[go: up one dir, main page]

Skip to content

Commit

Permalink
Merge pull request #172 from mutahirqureshi/gradle-plugin-0.12
Browse files Browse the repository at this point in the history
update gradle plugin to 0.12
  • Loading branch information
Crossle Song committed Jul 1, 2014
2 parents aaa6ab1 + dabe119 commit 31191af
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 13 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,6 @@ local.properties

# IntelliJ IDEA files
*.iml
.idea/

*.gradle
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.11.+'
classpath 'com.android.tools.build:gradle:0.12.+'
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ GROUP=io.vov.vitamio

ANDROID_BUILD_MIN_SDK_VERSION=11
ANDROID_BUILD_TARGET_SDK_VERSION=19
ANDROID_BUILD_TOOLS_VERSION=19.1.0
ANDROID_BUILD_TOOLS_VERSION=20.0.0
ANDROID_BUILD_SDK_VERSION=19
4 changes: 0 additions & 4 deletions vitamio-sample/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
android:versionCode="002"
android:versionName="0.0.2" >

<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="19" />

<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Expand Down
5 changes: 3 additions & 2 deletions vitamio-sample/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apply plugin: 'android'
apply plugin: 'com.android.application'

dependencies {
compile project(':vitamio')
Expand All @@ -7,9 +7,10 @@ dependencies {
android {
compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION)
buildToolsVersion project.ANDROID_BUILD_TOOLS_VERSION
useOldManifestMerger true

defaultConfig {
minSdkVersion 7
minSdkVersion Integer.parseInt(project.ANDROID_BUILD_MIN_SDK_VERSION)
targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION)
}

Expand Down
4 changes: 0 additions & 4 deletions vitamio/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
android:versionCode="400"
android:versionName="4.0">

<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="19"/>

<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Expand Down
2 changes: 1 addition & 1 deletion vitamio/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apply plugin: 'android-library'
apply plugin: 'com.android.library'

dependencies {
}
Expand Down

0 comments on commit 31191af

Please sign in to comment.