Files
LayaNative2.0/Conch/build/conch/proj.android_studio/app/build.gradle
T
2020-11-11 16:17:13 +08:00

43 lines
1.1 KiB
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 28
buildToolsVersion "28.0.0"
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "com.layabox.conch6"
minSdkVersion 14
targetSdkVersion 28
versionCode 17
versionName "release-2.9.0"
}
sourceSets.main{
jniLibs.srcDir 'libs'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
debuggable true
jniDebuggable true
renderscriptDebuggable true
}
}
/* externalNativeBuild {
ndkBuild {
path '../../proj.android/jni/Android.mk'
}
}*/
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
testImplementation 'junit:junit:4.12'
implementation project(':conch5')
implementation group: 'com.google.zxing', name: 'core', version: '3.3.1'
implementation 'com.journeyapps:zxing-android-embedded:3.3.0'
implementation 'com.android.support:appcompat-v7:25.3.1'
}