-
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.
Reorganize deps and versions; make necessary update
- Loading branch information
Can Elmas
authored and
Can Elmas
committed
Sep 3, 2017
1 parent
3d3fbb9
commit 042e7b3
Showing
5 changed files
with
44 additions
and
32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,46 @@ | ||
buildscript { | ||
|
||
ext.versions = [ | ||
compileSdkVersion : 26, | ||
buildToolsVersion : '26.0.1', | ||
minSdkVersion : 14, | ||
targetSdkVersion : 26, | ||
supportLibrary : '26.0.1', | ||
aspectjrt : '1.8.10', | ||
aspectjtools : '1.8.9', | ||
androidPlugin : '3.0.0-beta4', | ||
androidMavenPlugin: '1.2' | ||
] | ||
|
||
ext.deps = [ | ||
supportAnnotations : "com.android.support:support-annotations:${versions.supportLibrary}", | ||
supportDesign : "com.android.support:design:${versions.supportLibrary}", | ||
appCompatv7 : "com.android.support:appcompat-v7:${versions.supportLibrary}", | ||
aspectjrt : "org.aspectj:aspectjrt:${versions.aspectjrt}", | ||
aspectjtools : "org.aspectj:aspectjtools:${versions.aspectjtools}", | ||
androidGradlePlugin: "com.android.tools.build:gradle:${versions.androidPlugin}", | ||
androidMavenPlugin : "com.github.dcendents:android-maven-plugin:${versions.androidMavenPlugin}", | ||
junit : 'junit:junit:4.12' | ||
] | ||
|
||
repositories { | ||
jcenter() | ||
google() | ||
} | ||
|
||
dependencies { | ||
classpath 'com.android.tools.build:gradle:1.3.0' | ||
classpath deps.androidGradlePlugin | ||
classpath 'org.gradle.api.plugins:gradle-nexus-plugin:0.7' | ||
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3' | ||
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5' | ||
} | ||
} | ||
|
||
allprojects { | ||
repositories { | ||
jcenter() | ||
google() | ||
} | ||
|
||
group = GROUP | ||
version = VERSION_NAME | ||
} | ||
|
||
ext { | ||
compileSdkVersion = 23 | ||
buildToolsVersion = '22.0.1' | ||
minSdkVersion = 10 | ||
targetSdkVersion = 23 | ||
} | ||
|
||
ext.deps = [ | ||
supportAnnotations : 'com.android.support:support-annotations:23.0.1', | ||
supportDesign : 'com.android.support:design:23.0.1', | ||
appCompatv7 : 'com.android.support:appcompat-v7:23.0.1', | ||
] |
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
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