Skip to content

Commit

Permalink
fix: attempt at fixing github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
robertjcolley committed Feb 19, 2024
1 parent e5a9f99 commit 3beb1f1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
6 changes: 5 additions & 1 deletion android/viroar/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ apply plugin: 'maven-publish'
android {
compileSdkVersion 31
namespace "com.viro.ar"


compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

defaultConfig {
minSdkVersion 24
Expand Down
4 changes: 4 additions & 0 deletions android/virocore/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ android {
buildConfig = true
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
defaultConfig {
minSdkVersion 24
targetSdkVersion 31
Expand Down
4 changes: 4 additions & 0 deletions android/viroreact/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ android {
namespace "com.viro.viroreact"
buildFeatures {
buildConfig = true
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

defaultConfig {
Expand Down

0 comments on commit 3beb1f1

Please sign in to comment.