| 1234567891011121314151617181920212223242526272829303132 |
- apply plugin: 'com.android.library'
- apply plugin: 'org.greenrobot.greendao'
- android {
- compileSdkVersion ANDROID_COMPILE_SDK_VERSION as int
- buildToolsVersion ANDROID_BUILD_TOOLS_VERSION
- defaultConfig {
- minSdkVersion ANDROID_MIN_SDK_VERSION as int
- targetSdkVersion ANDORID_TARGET_SDK_VERSION as int
- versionCode VERSION_CODE as int
- versionName VERSION_NAME
- }
- greendao {
- schemaVersion 8
- targetGenDir 'src/main/java'
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- compile 'com.android.support:support-v4:27.1.0'
- compile 'org.greenrobot:greendao:3.2.2'
- }
- // uploadArchive only arr and eclipse
- //apply from: "https://github.com/sinlov/Gradle_Zoo/raw/master/android-local/local-archives-only-arr-eclipse.gradle"
|