123456789101112131415161718192021222324252627 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion COMPILE_SDK_VERSION as int
- buildToolsVersion BUILD_TOOLS_VERSION
- defaultConfig {
- minSdkVersion MIN_SDK_VERSION
- targetSdkVersion TARGET_SDK_VERSION as int
- versionCode 1
- versionName "1.0"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- implementation 'com.forward.androids:androids:1.1.4'
- }
- //if (isForUpload2Maven()) {
- // apply from: "https://raw.githubusercontent.com/1993hzw/common/master/bintrayUpload.gradle"
- //}
|