2015-01-01 11:38:34 +01:00
|
|
|
/*
|
2017-02-09 15:20:33 +01:00
|
|
|
* Twidere - Twitter client for Android
|
2015-01-01 11:38:34 +01:00
|
|
|
*
|
2017-02-09 15:20:33 +01:00
|
|
|
* 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
|
2015-01-01 11:38:34 +01:00
|
|
|
*
|
2017-02-09 15:20:33 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2015-01-01 11:38:34 +01:00
|
|
|
*
|
2017-02-09 15:20:33 +01:00
|
|
|
* 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.
|
2015-01-01 11:38:34 +01:00
|
|
|
*/
|
|
|
|
|
2015-01-11 10:28:45 +01:00
|
|
|
apply plugin: 'com.android.library'
|
2015-04-23 16:59:20 +02:00
|
|
|
apply plugin: 'com.neenbedankt.android-apt'
|
2015-01-01 11:38:34 +01:00
|
|
|
|
2015-01-11 10:28:45 +01:00
|
|
|
android {
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 14
|
2016-12-01 08:55:38 +01:00
|
|
|
targetSdkVersion 25
|
2015-01-11 10:28:45 +01:00
|
|
|
versionCode 1
|
2016-02-20 17:44:35 +01:00
|
|
|
versionName "3.0"
|
2015-01-01 11:38:34 +01:00
|
|
|
}
|
2015-01-11 10:28:45 +01:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
2015-01-01 11:38:34 +01:00
|
|
|
}
|
2015-01-11 10:28:45 +01:00
|
|
|
}
|
2015-01-01 11:38:34 +01:00
|
|
|
|
2015-01-11 10:28:45 +01:00
|
|
|
dependencies {
|
2016-03-11 13:28:46 +01:00
|
|
|
apt 'com.bluelinelabs:logansquare-compiler:1.3.7'
|
2016-01-04 04:32:48 +01:00
|
|
|
apt 'com.hannesdorfmann.parcelableplease:processor:1.0.2'
|
2017-02-17 09:31:29 +01:00
|
|
|
apt "com.github.mariotaku.ObjectCursor:processor:$mariotaku_object_cursor_version"
|
2016-12-07 10:50:44 +01:00
|
|
|
compile "com.android.support:support-annotations:$android_support_lib_version"
|
2016-03-11 13:28:46 +01:00
|
|
|
compile 'com.bluelinelabs:logansquare:1.3.7'
|
2016-12-07 10:50:44 +01:00
|
|
|
compile "com.github.mariotaku.RestFu:library:$mariotaku_restfu_version"
|
|
|
|
compile "com.github.mariotaku.RestFu:oauth:$mariotaku_restfu_version"
|
2016-01-04 04:32:48 +01:00
|
|
|
compile 'com.hannesdorfmann.parcelableplease:annotation:1.0.2'
|
2017-02-17 09:31:29 +01:00
|
|
|
compile "com.github.mariotaku.ObjectCursor:core:$mariotaku_object_cursor_version"
|
2016-12-07 10:50:44 +01:00
|
|
|
compile "com.github.mariotaku.CommonsLibrary:objectcursor:$mariotaku_commons_library_version"
|
|
|
|
compile "com.github.mariotaku.CommonsLibrary:logansquare:$mariotaku_commons_library_version"
|
2015-01-11 10:28:45 +01:00
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
2015-01-01 11:38:34 +01:00
|
|
|
}
|