29 lines
811 B
Groovy
Executable File
29 lines
811 B
Groovy
Executable File
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 26
|
|
|
|
defaultConfig {
|
|
minSdkVersion 14
|
|
targetSdkVersion 26
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
testImplementation 'junit:junit:4.12'
|
|
implementation 'com.android.support:appcompat-v7:26.1.0'
|
|
implementation 'com.squareup.okhttp3:okhttp:3.6.0'
|
|
implementation 'com.google.code.gson:gson:2.8.0'
|
|
implementation 'com.j256.ormlite:ormlite-android:5.0'
|
|
implementation 'com.jakewharton:butterknife:8.5.1'
|
|
}
|