Skip to content

Commit

Permalink
Update (ReactVision#42)
Browse files Browse the repository at this point in the history
With this update we are getting the latest ViroCore version (to-be-released) wihich supports ARCore 1.26.0 and is targeting Android SDK 30 as required by Google.

Also, this update targets React Native 0.65.1
  • Loading branch information
doranteseduardo authored Sep 5, 2021
1 parent 2f3fa9b commit 90e7b8e
Show file tree
Hide file tree
Showing 9 changed files with 13,011 additions and 11 deletions.
2 changes: 1 addition & 1 deletion android/arcore_client/build.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configurations.maybeCreate("default")
artifacts.add("default", file('core-1.10.0.aar'))
artifacts.add("default", file('core-1.26.0.aar'))
Binary file removed android/arcore_client/core-1.10.0.aar
Binary file not shown.
Binary file added android/arcore_client/core-1.26.0.aar
Binary file not shown.
1 change: 1 addition & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ buildscript {
url 'https://maven.google.com'
}
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.0'
Expand Down
Binary file modified android/react_viro/react_viro-release.aar
Binary file not shown.
14 changes: 7 additions & 7 deletions android/viro_bridge/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
compileSdkVersion 30
buildToolsVersion '30.0.2'

defaultConfig {
minSdkVersion 21
targetSdkVersion 28
minSdkVersion 24
targetSdkVersion 30
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}
buildTypes {
release {
Expand All @@ -20,10 +20,10 @@ android {
}

dependencies {
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
exclude group: 'com.android.support', module: 'support-annotations'
})
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'androidx.appcompat:appcompat:1.0.0'
testImplementation 'junit:junit:4.12'
implementation 'com.facebook.react:react-native:+'
implementation project(':arcore_client')
Expand Down
Binary file modified android/viro_renderer/viro_renderer-release.aar
Binary file not shown.
Loading

0 comments on commit 90e7b8e

Please sign in to comment.