diff --git a/examples/agdk-egui/app/src/main/AndroidManifest.xml b/examples/agdk-egui/app/src/main/AndroidManifest.xml index 9d095f8..dcbe721 100644 --- a/examples/agdk-egui/app/src/main/AndroidManifest.xml +++ b/examples/agdk-egui/app/src/main/AndroidManifest.xml @@ -11,6 +11,7 @@ android:theme="@style/Theme.RustTemplate"> diff --git a/examples/agdk-mainloop/app/src/main/AndroidManifest.xml b/examples/agdk-mainloop/app/src/main/AndroidManifest.xml index d420444..7b99a0b 100644 --- a/examples/agdk-mainloop/app/src/main/AndroidManifest.xml +++ b/examples/agdk-mainloop/app/src/main/AndroidManifest.xml @@ -11,6 +11,7 @@ android:theme="@style/Theme.RustTemplate"> diff --git a/examples/agdk-winit-wgpu/app/src/main/AndroidManifest.xml b/examples/agdk-winit-wgpu/app/src/main/AndroidManifest.xml index 42ef1ea..d0f559a 100644 --- a/examples/agdk-winit-wgpu/app/src/main/AndroidManifest.xml +++ b/examples/agdk-winit-wgpu/app/src/main/AndroidManifest.xml @@ -11,6 +11,7 @@ android:theme="@style/Theme.RustTemplate"> diff --git a/examples/na-mainloop/app/build.gradle b/examples/na-mainloop/app/build.gradle index 77c1a85..c17a5d3 100644 --- a/examples/na-mainloop/app/build.gradle +++ b/examples/na-mainloop/app/build.gradle @@ -6,7 +6,7 @@ android { compileSdk 31 defaultConfig { - applicationId "co.realfit.agdkmainloop" + applicationId "co.realfit.namainloop" minSdk 28 targetSdk 31 versionCode 1 @@ -36,26 +36,5 @@ android { dependencies { - implementation 'androidx.appcompat:appcompat:1.4.1' - implementation 'com.google.android.material:material:1.5.0' - implementation 'androidx.constraintlayout:constraintlayout:2.1.3' - testImplementation 'junit:junit:4.13.2' - androidTestImplementation 'androidx.test.ext:junit:1.1.3' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' - - // To use the Android Frame Pacing library - //implementation "androidx.games:games-frame-pacing:1.9.1" - - // To use the Android Performance Tuner - //implementation "androidx.games:games-performance-tuner:1.5.0" - - // To use the Games Activity library - implementation "androidx.games:games-activity:1.1.0" - - // To use the Games Controller Library - //implementation "androidx.games:games-controller:1.1.0" - - // To use the Games Text Input Library - //implementation "androidx.games:games-text-input:1.1.0" } diff --git a/examples/na-mainloop/app/src/main/AndroidManifest.xml b/examples/na-mainloop/app/src/main/AndroidManifest.xml index f28cdc1..56fe639 100644 --- a/examples/na-mainloop/app/src/main/AndroidManifest.xml +++ b/examples/na-mainloop/app/src/main/AndroidManifest.xml @@ -8,9 +8,10 @@ android:label="NativeActivity Mainloop" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" - android:theme="@style/Theme.RustTemplate"> + android:theme="@android:style/Theme.NoTitleBar.Fullscreen"> diff --git a/examples/na-mainloop/app/src/main/res/values-night/themes.xml b/examples/na-mainloop/app/src/main/res/values-night/themes.xml deleted file mode 100644 index 81c6873..0000000 --- a/examples/na-mainloop/app/src/main/res/values-night/themes.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - \ No newline at end of file diff --git a/examples/na-mainloop/app/src/main/res/values/colors.xml b/examples/na-mainloop/app/src/main/res/values/colors.xml deleted file mode 100644 index f8c6127..0000000 --- a/examples/na-mainloop/app/src/main/res/values/colors.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - #FFBB86FC - #FF6200EE - #FF3700B3 - #FF03DAC5 - #FF018786 - #FF000000 - #FFFFFFFF - \ No newline at end of file diff --git a/examples/na-mainloop/app/src/main/res/values/themes.xml b/examples/na-mainloop/app/src/main/res/values/themes.xml deleted file mode 100644 index 83a6c4a..0000000 --- a/examples/na-mainloop/app/src/main/res/values/themes.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - \ No newline at end of file diff --git a/examples/na-winit-wgpu/app/build.gradle b/examples/na-winit-wgpu/app/build.gradle index c91fcab..832b64e 100644 --- a/examples/na-winit-wgpu/app/build.gradle +++ b/examples/na-winit-wgpu/app/build.gradle @@ -6,7 +6,7 @@ android { compileSdk 31 defaultConfig { - applicationId "co.realfit.agdkwinitwgpu" + applicationId "co.realfit.nawinitwgpu" minSdk 28 targetSdk 31 versionCode 1 @@ -35,27 +35,6 @@ android { } dependencies { - - implementation 'androidx.appcompat:appcompat:1.4.1' - implementation 'com.google.android.material:material:1.5.0' - implementation 'androidx.constraintlayout:constraintlayout:2.1.3' - testImplementation 'junit:junit:4.13.2' - androidTestImplementation 'androidx.test.ext:junit:1.1.3' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' - - // To use the Android Frame Pacing library - //implementation "androidx.games:games-frame-pacing:1.9.1" - - // To use the Android Performance Tuner - //implementation "androidx.games:games-performance-tuner:1.5.0" - - // To use the Games Activity library - implementation "androidx.games:games-activity:1.1.0" - - // To use the Games Controller Library - //implementation "androidx.games:games-controller:1.1.0" - - // To use the Games Text Input Library - //implementation "androidx.games:games-text-input:1.1.0" + } diff --git a/examples/na-winit-wgpu/app/src/main/AndroidManifest.xml b/examples/na-winit-wgpu/app/src/main/AndroidManifest.xml index e81b1cb..8e145c4 100644 --- a/examples/na-winit-wgpu/app/src/main/AndroidManifest.xml +++ b/examples/na-winit-wgpu/app/src/main/AndroidManifest.xml @@ -8,9 +8,10 @@ android:label="AGDK Winit Wgpu" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" - android:theme="@style/Theme.RustTemplate"> + android:theme="@android:style/Theme.NoTitleBar.Fullscreen"> diff --git a/examples/na-winit-wgpu/app/src/main/res/values-night/themes.xml b/examples/na-winit-wgpu/app/src/main/res/values-night/themes.xml deleted file mode 100644 index 81c6873..0000000 --- a/examples/na-winit-wgpu/app/src/main/res/values-night/themes.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - \ No newline at end of file diff --git a/examples/na-winit-wgpu/app/src/main/res/values/colors.xml b/examples/na-winit-wgpu/app/src/main/res/values/colors.xml deleted file mode 100644 index f8c6127..0000000 --- a/examples/na-winit-wgpu/app/src/main/res/values/colors.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - #FFBB86FC - #FF6200EE - #FF3700B3 - #FF03DAC5 - #FF018786 - #FF000000 - #FFFFFFFF - \ No newline at end of file diff --git a/examples/na-winit-wgpu/app/src/main/res/values/themes.xml b/examples/na-winit-wgpu/app/src/main/res/values/themes.xml deleted file mode 100644 index 83a6c4a..0000000 --- a/examples/na-winit-wgpu/app/src/main/res/values/themes.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - \ No newline at end of file