gradle wrapper

This commit is contained in:
Dominik Schürmann 2013-05-25 23:13:39 +02:00
parent bcd951e968
commit 4275019747
7 changed files with 18 additions and 7 deletions

3
.gitignore vendored
View File

@ -14,6 +14,9 @@ ant.properties
.gradle .gradle
build build
gradle.properties gradle.properties
gradlew
gradlew.bat
gradle
#Maven #Maven
target target

View File

@ -14,6 +14,9 @@ ant.properties
.gradle .gradle
build build
gradle.properties gradle.properties
gradlew
gradlew.bat
gradle
#Maven #Maven
target target

View File

@ -14,6 +14,9 @@ ant.properties
.gradle .gradle
build build
gradle.properties gradle.properties
gradlew
gradlew.bat
gradle
#Maven #Maven
target target

View File

@ -14,6 +14,9 @@ ant.properties
.gradle .gradle
build build
gradle.properties gradle.properties
gradlew
gradlew.bat
gradle
#Maven #Maven
target target

View File

@ -1,8 +1,3 @@
task wrapper(type: Wrapper) {
gradleVersion = '1.6'
}
buildscript { buildscript {
repositories { repositories {
mavenCentral() mavenCentral()

View File

@ -12,8 +12,8 @@ Fork OpenPGP Keychain and do a merge request. I will merge your changes back int
1. Have Android SDK "tools", "platform-tools", and "build-tools" directories in your PATH (http://developer.android.com/sdk/index.html) 1. Have Android SDK "tools", "platform-tools", and "build-tools" directories in your PATH (http://developer.android.com/sdk/index.html)
2. Export ANDROID_HOME pointing to your Android SDK 2. Export ANDROID_HOME pointing to your Android SDK
3. Install Gradle (Minimum version: 1.6) 3. Execute ``gradle wrapper`` (http://www.gradle.org/docs/current/userguide/gradle_wrapper.html)
4. Execute ``gradle assemble`` 4. Execute ``./gradlew assemble``
## Build with Ant ## Build with Ant

4
build.gradle Normal file
View File

@ -0,0 +1,4 @@
task wrapper(type: Wrapper) {
gradleVersion = '1.6'
}