PlayerAndroid/appthemehelper/build.gradle

35 lines
1.0 KiB
Groovy
Raw Normal View History

2018-07-27 13:07:33 +00:00
apply plugin: 'com.android.library'
android {
2018-08-22 17:54:07 +00:00
compileSdkVersion 28
2018-07-27 13:07:33 +00:00
defaultConfig {
minSdkVersion 21
2018-08-22 17:54:07 +00:00
targetSdkVersion 28
2018-07-27 13:07:33 +00:00
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2018-08-22 17:54:07 +00:00
buildToolsVersion '28.0.2'
2018-07-27 13:07:33 +00:00
productFlavors {
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
2018-08-22 17:54:07 +00:00
implementation 'com.android.support:appcompat-v7:28.0.0-rc01'
implementation 'com.android.support:design:28.0.0-rc01'
implementation 'com.android.support:preference-v7:28.0.0-rc01'
implementation 'com.android.support:cardview-v7:28.0.0-rc01'
2018-07-27 13:07:33 +00:00
// Used for the list preference classes
implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
implementation 'com.afollestad.material-dialogs:commons:0.9.6.0'
}