OLD | NEW |
---|---|
(Empty) | |
1 apply plugin: 'com.android.application' | |
djsollen
2016/06/23 16:21:58
you will need to remove it from the top level grad
| |
2 | |
3 android { | |
4 compileSdkVersion 19 | |
5 buildToolsVersion "22.0.1" | |
6 | |
7 defaultConfig { | |
8 applicationId "com.skia.sample_app" | |
9 minSdkVersion 9 | |
10 targetSdkVersion 19 | |
11 versionCode 1 | |
12 versionName "1.0" | |
13 signingConfig signingConfigs.debug | |
14 } | |
15 | |
16 sourceSets.main.jni.srcDirs = [] //disable automatic ndk-build call | |
17 sourceSets.main.jniLibs.srcDir "src/main/libs" | |
18 | |
19 productFlavors { | |
20 arm {} | |
21 arm64 {} | |
22 x86 {} | |
23 x86_64 {} | |
24 mips {} | |
25 mips64 {} | |
26 } | |
27 | |
28 // make sure that app is built and shared libraries are copied to correct di rectories | |
29 setupSkiaLibraryBuild(project, applicationVariants, "CopySampleAppDeps") | |
30 } | |
OLD | NEW |