comparison app/build.gradle @ 29:e6784ab8964c

starting update to latest toolchain
author Carl Byington <carl@five-ten-sg.com>
date Thu, 08 Nov 2018 11:54:22 -0800
parents 807f7e4eaebe
children 0bc0b4798d9e
comparison
equal deleted inserted replaced
28:a5f1c68e4519 29:e6784ab8964c
39 compileSdkVersion = 16 39 compileSdkVersion = 16
40 buildTypes { 40 buildTypes {
41 release { 41 release {
42 minifyEnabled = false 42 minifyEnabled = false
43 signingConfig = signingConfigs.release 43 signingConfig = signingConfigs.release
44 ndk {
45 debuggable = false
46 abiFilters 'armeabi-v7a'
47 }
48 } 44 }
49 debug { 45 debug {
50 debuggable = true 46 debuggable = true
51 ndk {
52 debuggable = true
53 abiFilters 'armeabi-v7a'
54 }
55 } 47 }
56 } 48 }
57 flavorDimensions "arch" 49 flavorDimensions "arch"
58 productFlavors { 50 productFlavors {
59 arm { 51 arm {
61 } 53 }
62 x86 { 54 x86 {
63 dimension "arch" 55 dimension "arch"
64 } 56 }
65 } 57 }
66 sourceSets {
67 main {
68 jni {
69 srcDir "Exec"
70 }
71 }
72 }
73 58
74 defaultConfig { 59 defaultConfig {
75 applicationId = "com.five_ten_sg.connectbot" 60 applicationId = "com.five_ten_sg.connectbot"
76 minSdkVersion = 8 61 minSdkVersion = 8
77 targetSdkVersion = 15 62 targetSdkVersion = 15
78 ndk {
79 moduleName = "com_google_ase_Exec"
80 }
81 }
82
83 externalNativeBuild {
84 ndkBuild {
85 path "src/main/jni/Android.mk"
86 }
87 } 63 }
88 64
89 } 65 }