XiMengJianYu/.svn/pristine/32/32018fe56a544fef8029b6c39b63d8fc6b854d42.svn-base
2023-04-17 17:58:44 +08:00

30 lines
794 B
Plaintext
Executable File

apply plugin: 'com.android.library'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
minSdkVersion 14
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:25.2.0'
compile 'com.squareup.okhttp3:okhttp:3.6.0'
compile 'com.google.code.gson:gson:2.8.0'
compile 'com.j256.ormlite:ormlite-android:5.0'
compile 'com.jakewharton:butterknife:8.5.1'
}