-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
Gradle Upgrade, Dependencies Upgrade
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,26 @@ | ||
apply plugin: 'android-library' | ||
apply plugin: 'com.android.library' | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
android { | ||
compileSdkVersion 22 | ||
buildToolsVersion '22.0.1' | ||
} | ||
|
||
buildscript { | ||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
classpath 'com.android.tools.build:gradle:1.0.0' | ||
classpath 'com.android.tools.build:gradle:1.2.3' | ||
} | ||
} | ||
|
||
dependencies { | ||
compile 'com.android.support:appcompat-v7:20.0.+' | ||
compile 'com.android.support:support-v4:20.0.+' | ||
compile 'com.google.android.gms:play-services:+' | ||
compile 'com.android.support:appcompat-v7:22.2.1' | ||
compile 'com.android.support:support-v4:22.2.1' | ||
compile 'com.google.android.gms:play-services:7.5.0' | ||
} | ||
|
||
android { | ||
compileSdkVersion 20 | ||
buildToolsVersion '20' | ||
} | ||
|