comparison app/build.gradle @ 459:a3239022798d

compile 32 and 64 bit arch, bump version
author Carl Byington <carl@five-ten-sg.com>
date Sun, 28 Apr 2019 17:06:20 -0700
parents 105815cce146
children 869070df0e80
comparison
equal deleted inserted replaced
458:ad275ce23092 459:a3239022798d
21 release { 21 release {
22 minifyEnabled = false 22 minifyEnabled = false
23 signingConfig = android.signingConfigs.release 23 signingConfig = android.signingConfigs.release
24 ndk { 24 ndk {
25 debuggable = false 25 debuggable = false
26 abiFilters 'armeabi-v7a' 26 abiFilters 'armeabi-v7a', 'arm64-v8a'
27 } 27 }
28 } 28 }
29 debug { 29 debug {
30 debuggable = true 30 debuggable = true
31 initWith debug
32 jniDebuggable true
33 externalNativeBuild {
34 ndkBuild {
35 cFlags "-DDEBUG=1"
36 }
37 }
31 ndk { 38 ndk {
32 debuggable = true 39 debuggable = true
33 abiFilters 'armeabi-v7a' 40 abiFilters 'armeabi-v7a', 'arm64-v8a'
34 } 41 }
35 } 42 }
36 } 43 }
37 flavorDimensions "arch" 44 flavorDimensions "arch"
38 productFlavors { 45 productFlavors {
55 applicationId = "com.five_ten_sg.connectbot" 62 applicationId = "com.five_ten_sg.connectbot"
56 minSdkVersion = 21 63 minSdkVersion = 21
57 targetSdkVersion = 28 64 targetSdkVersion = 28
58 ndk { 65 ndk {
59 moduleName = "com_google_ase_Exec" 66 moduleName = "com_google_ase_Exec"
60 abiFilters 'armeabi-v7a' 67 abiFilters 'armeabi-v7a', 'arm64-v8a'
61 } 68 }
62 } 69 }
63 70
64 externalNativeBuild { 71 externalNativeBuild {
65 ndkBuild { 72 ndkBuild {
66 path "src/main/jni/Android.mk" 73 path "src/main/jni/Android.mk"
67 } 74 }
68 } 75 }
69 76
77 dependencies {
78 implementation 'com.android.support:support-v4:23.+'
79 // update the 23.0.0 to latest version available
80 }
70 } 81 }