Skip to content

Commit 14a7ced

Browse files
authored
Version 2.6.3 (#768)
* Added visionOS support and sample app * Bugfixes in Bitcrusher and JSON parser * Updated dependencies and build tools for sample apps
1 parent 49cd9f1 commit 14a7ced

File tree

104 files changed

+1632
-54
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+1632
-54
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
Superpowered/libWindows/SuperpoweredWinUWP.pri
33
Examples_Windows/x64
44
Examples_Windows/x86
5-
Examples_Windows/.vs
5+
Examples_Windows/.vs
6+
xcuserdata

Examples_Android/SuperpoweredCrossExample/app/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ apply plugin: 'com.android.application'
33
def superpowered_sdk_path = new File(projectDir, '../../../Superpowered')
44

55
android { // main settings for your application
6-
compileSdkVersion = 33
6+
compileSdkVersion = 34
77

88
defaultConfig {
99
applicationId "com.superpowered.crossexample"
1010
minSdkVersion 24
11-
targetSdkVersion 33
11+
targetSdkVersion 34
1212
versionCode 1
1313
versionName "1.0"
1414

@@ -32,6 +32,7 @@ android { // main settings for your application
3232
}
3333

3434
ndkVersion '25.1.8937393'
35+
namespace 'com.superpowered.crossexample'
3536
}
3637

3738
dependencies {

Examples_Android/SuperpoweredCrossExample/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.superpowered.crossexample" >
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
65

Examples_Android/SuperpoweredCrossExample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
google()
99
}
1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:7.2.2'
11+
classpath 'com.android.tools.build:gradle:8.1.4'
1212
}
1313
}
1414

Examples_Android/SuperpoweredCrossExample/gradle.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,8 @@
1616
# This option should only be used with decoupled projects. More details, visit
1717
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1818
# org.gradle.parallel=true
19+
android.defaults.buildfeatures.buildconfig=true
1920
android.enableJetifier=true
21+
android.nonFinalResIds=false
22+
android.nonTransitiveRClass=false
2023
android.useAndroidX=true

Examples_Android/SuperpoweredCrossExample/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip

Examples_Android/SuperpoweredEffect/app/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ apply plugin: 'com.android.application'
33
def superpowered_sdk_path = new File(projectDir, '../../../Superpowered')
44

55
android { // main settings for your application
6-
compileSdkVersion = 33
6+
compileSdkVersion = 34
77

88
defaultConfig {
99
applicationId "com.superpowered.effect"
1010
minSdkVersion 24
11-
targetSdkVersion 33
11+
targetSdkVersion 34
1212
versionCode 1
1313
versionName "1.0"
1414

@@ -32,6 +32,7 @@ android { // main settings for your application
3232
}
3333

3434
ndkVersion '25.1.8937393'
35+
namespace 'com.superpowered.effect'
3536
}
3637

3738
dependencies {

Examples_Android/SuperpoweredEffect/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.superpowered.effect">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<uses-permission android:name="android.permission.RECORD_AUDIO" />
65

Examples_Android/SuperpoweredEffect/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
jcenter()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:7.2.2'
10+
classpath 'com.android.tools.build:gradle:8.1.4'
1111

1212

1313
// NOTE: Do not place your application dependencies here; they belong

Examples_Android/SuperpoweredEffect/gradle.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99

1010
# Specifies the JVM arguments used for the daemon process.
1111
# The setting is particularly useful for tweaking memory settings.
12+
android.defaults.buildfeatures.buildconfig=true
1213
android.enableJetifier=true
14+
android.nonFinalResIds=false
15+
android.nonTransitiveRClass=false
1316
android.useAndroidX=true
1417
org.gradle.jvmargs=-Xmx1536m
1518

0 commit comments

Comments
 (0)