This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ... | |
android { | |
// ... | |
applicationVariants.configureEach { | |
val archMap = mapOf( | |
"x86" to "i686", | |
"x86_64" to "x86_64", | |
"armeabi-v7a" to "arm", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This program prints a sexy pyramid with the following pattern sequence: | |
input: 15 | |
output: | |
1 | |
232 | |
34543 | |
4567654 | |
567898765 |