Skip to content

Commit

Permalink
Fix wrong version config in BuildConfig.
Browse files Browse the repository at this point in the history
  • Loading branch information
belinwu committed Apr 22, 2017
1 parent 04d9039 commit c9c72a9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ In your app `build.gradle`:

```gradle
dependencies {
compile 'com.github.samelody:threed:0.1.0'
compile 'com.github.samelody:threed:0.1.1'
}
```

Expand Down
4 changes: 2 additions & 2 deletions gradle/config.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ ext {
targetSdkVersion : 25,
minSdkVersion : 14,
buildToolsVersion: '25.0.2',
versionCode : 3,
versionName : '0.3.0',
versionCode : 2,
versionName : '0.1.1',
]

version = [
Expand Down
1 change: 1 addition & 0 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(config.project)
// compile 'com.github.samelody:threed:0.1.1'
}

0 comments on commit c9c72a9

Please sign in to comment.