Skip to content

Instantly share code, notes, and snippets.

@numa08
Created May 24, 2014 17:11
Show Gist options
  • Save numa08/24faa3d46c87f3dab842 to your computer and use it in GitHub Desktop.
Save numa08/24faa3d46c87f3dab842 to your computer and use it in GitHub Desktop.
when use android ndk for specified cpu configuration
── app-arm-debug-unaligned.apk   
── app-armv7-debug-unaligned.apk 
── app-fat-debug-unaligned.apk   
── app-mips-debug-unaligned.apk  
── app-x86-debug-unaligned.apk   
productFlavors {
x86 {
ndk {
abiFilter "x86"
}
}
mips {
ndk {
abiFilter "mips"
}
}
armv7 {
ndk {
abiFilter "armeabi-v7a"
}
}
arm {
ndk {
abiFilter "armeabi"
}
}
fat
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment