Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minor bugfixes #771

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/armarkers/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ android {
defaultConfig {
applicationId "processing.tests.armarkers"
minSdkVersion 23
compileSdk 33
targetSdkVersion 33
versionCode 1
versionName "1.0"
Expand Down
1 change: 1 addition & 0 deletions apps/arscene/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ android {
defaultConfig {
applicationId "processing.tests.arscene"
minSdkVersion 23
compileSdk 33
targetSdkVersion 33
versionCode 1
versionName "1.0"
Expand Down
1 change: 1 addition & 0 deletions apps/fast2d/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ android {
defaultConfig {
applicationId "processing.tests.fast2d"
minSdkVersion 17
compileSdk 33
targetSdkVersion 33
versionCode 1
versionName "1.0"
Expand Down
4 changes: 3 additions & 1 deletion apps/simple/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ android {
defaultConfig {
applicationId "processing.tests.simple"
minSdkVersion 17
compileSdk 33
targetSdkVersion 33
versionCode 1
versionName "1.0"
Expand All @@ -21,7 +22,8 @@ android {
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
namespace 'simple'
}

dependencies {
Expand Down
1 change: 1 addition & 0 deletions apps/vrcube/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ android {
defaultConfig {
applicationId "processing.tests.vrcube"
minSdkVersion 19
compileSdk 33
targetSdkVersion 33
versionCode 1
versionName "1.0"
Expand Down
1 change: 1 addition & 0 deletions apps/wallpaper/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ android {
defaultConfig {
applicationId "processing.tests.wallpaper"
minSdkVersion 17
compileSdk 33
targetSdkVersion 33
versionCode 1
versionName "1.0"
Expand Down
1 change: 1 addition & 0 deletions apps/watchface/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ android {
defaultConfig {
applicationId "processing.tests.watchface"
minSdkVersion 25
compileSdk 33
targetSdkVersion 33
versionCode 1
versionName "1.0"
Expand Down
1 change: 1 addition & 0 deletions libs/processing-ar/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ android {

defaultConfig {
minSdkVersion 19
compileSdk 33
targetSdkVersion 33
}

Expand Down
1 change: 1 addition & 0 deletions libs/processing-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ android {

defaultConfig {
minSdkVersion 17
compileSdk 33
targetSdkVersion 33
}

Expand Down
1 change: 1 addition & 0 deletions libs/processing-vr/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ android {

defaultConfig {
minSdkVersion 19
compileSdk 33
targetSdkVersion 33
}

Expand Down
2 changes: 0 additions & 2 deletions processing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,6 @@ task dist {
file("${root}/libraries/vr/examples"))
FileUtils.copyDirectory(file("mode/libraries/vr/library"),
file("${root}/libraries/vr/library"))
FileUtils.copyDirectory(file("mode/libraries/vr/libs"),
file("${root}/libraries/vr/libs"))
FileUtils.copyDirectory(file("../libs/processing-vr/src/main/java/"),
file("${root}/libraries/vr/src"))
Files.copy(file("mode/libraries/vr/library.properties").toPath(),
Expand Down