Skip to content

Commit

Permalink
Fix Duplicate BuildConfig
Browse files Browse the repository at this point in the history
Fix #35
Fix #36
  • Loading branch information
ThomasGorisse committed Apr 16, 2021
1 parent 2494f6e commit a879662
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ apps without requiring OpenGL or Unity.
*app/build.gradle*
```gradle
dependencies {
implementation("com.gorisse.thomas.sceneform:sceneform:1.18.8")
implementation("com.gorisse.thomas.sceneform:sceneform:1.18.9")
}
```
**[more...](https://thomasgorisse.github.io/sceneform-android-sdk/dependencies)**
Expand Down
4 changes: 2 additions & 2 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
// Sceneform requires minSdkVersion >= 24.
minSdkVersion 24
targetSdkVersion 30
versionCode 6
versionName "1.18.8"
versionCode 7
versionName "1.18.9"
}
compileOptions {
// Sceneform libraries use language constructs from Java 8.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ apps without requiring OpenGL or Unity.
*app/build.gradle*
```gradle
dependencies {
implementation("com.gorisse.thomas.sceneform:sceneform:1.18.8")
implementation("com.gorisse.thomas.sceneform:sceneform:1.18.9")
}
```
**[more...](https://thomasgorisse.github.io/sceneform-android-sdk/dependencies)**
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ org.gradle.jvmargs=-Xmx1536M -Dkotlin.daemon.jvm.options\="-Xmx2048M"
# Maven Publish
###############
GROUP=com.gorisse.thomas.sceneform
VERSION_NAME=1.18.8
VERSION_NAME=1.18.9
POM_DESCRIPTION=Sceneform is a 3D framework with a physically based renderer that is optimized for mobile devices and that makes it easy for you to build Augmented Reality (AR) apps without requiring OpenGL or Unity.
POM_URL=https://github.com/thomasgorisse/sceneform-android-sdk
POM_SCM_URL=https://github.com/thomasgorisse/sceneform-android-sdk
Expand Down
4 changes: 2 additions & 2 deletions sceneform/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ android {
defaultConfig {
minSdkVersion 24
targetSdkVersion 30
versionCode 6
versionName "1.18.8"
versionCode 7
versionName "1.18.9"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
Expand Down
2 changes: 1 addition & 1 deletion sceneform/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
-->
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.ar.sceneform">
package="com.google.ar.sceneform.sceneform">
</manifest>
4 changes: 2 additions & 2 deletions ux/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
// Sceneform requires minSdkVersion >= 24.
minSdkVersion 24
targetSdkVersion 30
versionCode 6
versionName "1.18.8"
versionCode 7
versionName "1.18.9"
}
compileOptions {
// Sceneform libraries use language constructs from Java 8.
Expand Down

0 comments on commit a879662

Please sign in to comment.