This repository has been archived by the owner on Oct 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
migration for support android studio 3
- Loading branch information
Showing
10 changed files
with
91 additions
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,51 @@ | ||
apply plugin: 'com.android.library' | ||
apply plugin: 'com.github.dcendents.android-maven' | ||
apply plugin: 'com.neenbedankt.android-apt' | ||
apply plugin: 'com.github.dcendents.android-maven' | ||
apply plugin: 'com.jakewharton.butterknife' | ||
|
||
group = 'com.github.derohimat' | ||
|
||
android { | ||
compileSdkVersion 25 | ||
buildToolsVersion '25.0.3' | ||
compileSdkVersion 27 | ||
buildToolsVersion '27.0.3' | ||
|
||
defaultConfig { | ||
minSdkVersion 15 | ||
targetSdkVersion 25 | ||
targetSdkVersion 27 | ||
versionCode 6 | ||
versionName "0.6" | ||
} | ||
compileOptions { | ||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
} | ||
|
||
repositories { | ||
maven { url 'https://jitpack.io' } | ||
} | ||
|
||
dependencies { | ||
final SUPPORT_LIBRARY_VERSION = '25.3.1' | ||
final SUPPORT_LIBRARY_VERSION = '27.1.1' | ||
|
||
compile fileTree(include: ['*.jar'], dir: 'libs') | ||
implementation fileTree(include: ['*.jar'], dir: 'libs') | ||
|
||
//----- Android Support | ||
compile "com.android.support:support-v4:$SUPPORT_LIBRARY_VERSION" | ||
compile "com.android.support:appcompat-v7:$SUPPORT_LIBRARY_VERSION" | ||
compile "com.android.support:cardview-v7:$SUPPORT_LIBRARY_VERSION" | ||
compile "com.android.support:design:$SUPPORT_LIBRARY_VERSION" | ||
compile "com.android.support:recyclerview-v7:$SUPPORT_LIBRARY_VERSION" | ||
api "com.android.support:support-v4:$SUPPORT_LIBRARY_VERSION" | ||
api "com.android.support:appcompat-v7:$SUPPORT_LIBRARY_VERSION" | ||
api "com.android.support:cardview-v7:$SUPPORT_LIBRARY_VERSION" | ||
api "com.android.support:design:$SUPPORT_LIBRARY_VERSION" | ||
api "com.android.support:recyclerview-v7:$SUPPORT_LIBRARY_VERSION" | ||
|
||
//----- Nine Olds Animation | ||
compile 'com.nineoldandroids:library:2.4.0' | ||
api 'com.nineoldandroids:library:2.4.0' | ||
//----- Butterknife | ||
compile 'com.jakewharton:butterknife:7.0.1' | ||
implementation 'com.jakewharton:butterknife:9.0.0-SNAPSHOT' | ||
annotationProcessor 'com.jakewharton:butterknife-compiler:9.0.0-SNAPSHOT' | ||
//----- Logging | ||
compile 'com.jakewharton.timber:timber:4.5.1' | ||
api 'com.jakewharton.timber:timber:4.7.1' | ||
//----- Image Utils | ||
compile 'com.github.bumptech.glide:glide:3.7.0' | ||
compile 'de.hdodenhof:circleimageview:2.1.0' | ||
implementation 'com.squareup.picasso:picasso:2.71828' | ||
implementation 'de.hdodenhof:circleimageview:2.2.0' | ||
//----- RecyclerView | ||
compile 'com.jcodecraeer:xrecyclerview:1.3.2' | ||
api 'com.jcodecraeer:xrecyclerview:1.3.2' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.