1234567891011121314151617181920212223242526272829303132333435363738 |
- apply plugin: 'com.android.library'
- apply plugin: 'kotlin-android'
- apply plugin: 'kotlin-android-extensions'
- android {
- compileSdkVersion 29
- defaultConfig {
- minSdkVersion 21
- targetSdkVersion 29
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- lintOptions {
- abortOnError false
- }
- }
- dependencies {
- androidTestImplementation('androidx.test.espresso:espresso-core:3.1.1-alpha01', {
- exclude group: 'com.android.support', module: 'support-annotations'
- })
- testImplementation 'junit:junit:4.12'
- api "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.10"
- api 'androidx.annotation:annotation:1.0.0'
- api 'com.github.hyb1996:settingscompat:1.1.5'
- api 'androidx.appcompat:appcompat:1.1.0'
- }
|