PlayerAndroid/appthemehelper/build.gradle

33 lines
976 B
Groovy
Raw Normal View History

2018-07-27 13:07:33 +00:00
apply plugin: 'com.android.library'
2018-12-05 15:35:22 +00:00
apply plugin: 'kotlin-android'
2018-07-27 13:07:33 +00:00
android {
2021-09-19 08:11:11 +00:00
compileSdkVersion 31
2018-07-27 13:07:33 +00:00
defaultConfig {
minSdkVersion 21
2021-11-09 04:53:12 +00:00
targetSdkVersion 31
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2018-07-27 13:07:33 +00:00
}
buildTypes {
release {
minifyEnabled true
2018-07-27 13:07:33 +00:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2018-12-05 15:35:22 +00:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2018-07-27 13:07:33 +00:00
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
2021-11-19 12:13:30 +00:00
implementation 'androidx.appcompat:appcompat:1.4.0'
implementation 'com.google.android.material:material:1.5.0-beta01'
2021-11-30 19:14:40 +00:00
implementation 'androidx.preference:preference-ktx:1.2.0-beta01'
2018-11-05 13:53:07 +00:00
implementation 'androidx.cardview:cardview:1.0.0'
2019-09-01 13:32:36 +00:00
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
2018-07-27 13:07:33 +00:00
}