Files
yusheng-android/locktableview/build.gradle

32 lines
820 B
Groovy
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

apply plugin: 'com.android.library'
group='com.github.RmondJone'
android {
namespace 'com.rmondjone.locktableview'
compileSdk 35
defaultConfig {
minSdk 24
targetSdk 35
versionCode 1
versionName "1.0.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
// 1. 核心AppCompat 依赖(必须添加,主题基础)
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.android.support:design:25.0.0'
implementation project(':BaseModule')
}