53 lines
2.1 KiB
Groovy
53 lines
2.1 KiB
Groovy
/*
|
|
* Twidere - Twitter client for Android
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance
|
|
* with the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing,
|
|
* software distributed under the License is distributed on an
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
* KIND, either express or implied. See the License for the
|
|
* specific language governing permissions and limitations
|
|
* under the License.
|
|
*/
|
|
|
|
apply plugin: 'com.android.library'
|
|
apply plugin: 'com.neenbedankt.android-apt'
|
|
|
|
android {
|
|
defaultConfig {
|
|
minSdkVersion 14
|
|
targetSdkVersion 25
|
|
versionCode 1
|
|
versionName "3.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
apt "com.bluelinelabs:logansquare-compiler:${libVersions['LoganSquare']}"
|
|
apt 'com.hannesdorfmann.parcelableplease:processor:1.0.2'
|
|
apt "com.github.mariotaku.ObjectCursor:processor:${libVersions['ObjectCursor']}"
|
|
compile "com.android.support:support-annotations:${libVersions['SupportLib']}"
|
|
compile "com.bluelinelabs:logansquare:${libVersions['LoganSquare']}"
|
|
compile "com.github.mariotaku.RestFu:library:${libVersions['RestFu']}"
|
|
compile "com.github.mariotaku.RestFu:oauth:${libVersions['RestFu']}"
|
|
compile 'com.hannesdorfmann.parcelableplease:annotation:1.0.2'
|
|
compile "com.github.mariotaku.ObjectCursor:core:${libVersions['ObjectCursor']}"
|
|
compile "com.github.mariotaku.CommonsLibrary:objectcursor:${libVersions['MariotakuCommons']}"
|
|
compile "com.github.mariotaku.CommonsLibrary:logansquare:${libVersions['MariotakuCommons']}"
|
|
}
|