Skip to content

Commit 6b940b6

Browse files
committed
Updated version codes for v0.7.0
1 parent 2488c78 commit 6b940b6

File tree

4 files changed

+22
-7
lines changed

4 files changed

+22
-7
lines changed

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,22 @@ geometric objects.
1818

1919
Download the [latest release](https://bintray.com/nasaworldwind/maven/WorldWindAndroid/_latestVersion) or grab via Gradle:
2020
```groovy
21-
compile 'gov.nasa.worldwind.android:worldwind:0.6.0@aar'
21+
compile 'gov.nasa.worldwind.android:worldwind:0.7.0'
22+
```
23+
24+
## Snapshots
25+
26+
Get development build snapshots with the latest features and bug fixes from [oss.jfrog.org](https://oss.jfrog.org/):
27+
```groovy
28+
repositories {
29+
maven {
30+
url 'https://oss.jfrog.org/artifactory/oss-snapshot-local'
31+
}
32+
}
33+
34+
...
35+
36+
compile 'gov.nasa.worldwind.android:worldwind:0.8.0-SNAPSHOT'
2237
```
2338

2439
## Releases and Roadmap

worldwind-examples/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
applicationId 'gov.nasa.worldwindx.examples'
88
minSdkVersion 16
99
targetSdkVersion 24
10-
versionCode 60
11-
versionName '0.6.0'
10+
versionCode 9
11+
versionName '0.7.0'
1212
}
1313
buildTypes {
1414
release {

worldwind-tutorials/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
applicationId 'gov.nasa.worldwindx.tutorials'
88
minSdkVersion 16
99
targetSdkVersion 24
10-
versionCode 60
11-
versionName '0.6.0'
10+
versionCode 9
11+
versionName '0.7.0'
1212
}
1313
buildTypes {
1414
release {

worldwind/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ android {
2020
defaultConfig {
2121
minSdkVersion 16
2222
targetSdkVersion 24
23-
versionCode 60
24-
versionName '0.7.0-SNAPSHOT'
23+
versionCode 9
24+
versionName '0.7.0'
2525
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
2626
}
2727
buildTypes {

0 commit comments

Comments
 (0)