2017-11-05 09:53:46 +08:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
compileSdkVersion 26
|
2018-07-29 11:16:56 +08:00
|
|
|
sourceSets{
|
|
|
|
|
main {
|
|
|
|
|
jniLibs.srcDirs = ['libs']
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-11-05 09:53:46 +08:00
|
|
|
defaultConfig {
|
|
|
|
|
applicationId "com.example.UserSoftwareAndroidTemplate"
|
|
|
|
|
minSdkVersion 19
|
|
|
|
|
targetSdkVersion 26
|
|
|
|
|
versionCode 1
|
|
|
|
|
versionName "1.0"
|
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
|
}
|
|
|
|
|
buildTypes {
|
|
|
|
|
release {
|
|
|
|
|
minifyEnabled false
|
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-07-29 11:16:56 +08:00
|
|
|
buildToolsVersion '27.0.3'
|
2017-11-05 09:53:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
|
|
|
implementation 'com.android.support:appcompat-v7:26.1.0'
|
|
|
|
|
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
|
|
|
|
|
implementation 'com.android.support:design:26.1.0'
|
|
|
|
|
implementation 'com.android.support:support-v4:26.1.0'
|
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
|
|
|
androidTestImplementation 'com.android.support.test:runner:1.0.1'
|
|
|
|
|
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
|
2017-11-05 19:14:47 +08:00
|
|
|
implementation 'com.google.code.gson:gson:2.8.2'
|
2018-07-29 11:16:56 +08:00
|
|
|
implementation files('libs/HslCommunication.jar')
|
2017-11-05 09:53:46 +08:00
|
|
|
}
|