diff --git a/app/build.gradle b/app/build.gradle index f8ce938..22f0b0e 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -8,7 +8,7 @@ android { defaultConfig { applicationId "com.example.sdl_capabilities_android" minSdk 21 - targetSdk 31 + targetSdk 30 versionCode 1 versionName "1.0" diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 3b43b59..80283e4 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -6,6 +6,15 @@ + + + + + + + + + appType = new Vector<>(); @@ -193,8 +196,8 @@ public boolean onSystemInfoReceived(SystemInfo systemInfo) { return START_STICKY; } - SdlArtwork artwork1 = new SdlArtwork("appIcon2.png", FileType.GRAPHIC_PNG, R.drawable.ic_sdl, false); - SdlArtwork artwork2 = new SdlArtwork("appIcon3.png", FileType.GRAPHIC_PNG, R.mipmap.icon_blanco, false); + SdlArtwork artwork1 = new SdlArtwork("appIcon2.png", FileType.GRAPHIC_PNG, R.drawable.sdl_logo_, false); + SdlArtwork artwork2 = new SdlArtwork("appIcon3.png", FileType.GRAPHIC_PNG, R.drawable.blanco_grande, false); private void setMainScreen () { TemplateConfiguration templateConfiguration = new TemplateConfiguration().setTemplate(PredefinedLayout.TEXT_WITH_GRAPHIC.toString()); @@ -206,7 +209,7 @@ private void setMainScreen () { private void setMenu () { // some arts - SdlArtwork livio = new SdlArtwork("livio.png", FileType.GRAPHIC_PNG, R.drawable.ic_sdl, false); + SdlArtwork livio = new SdlArtwork("livio.png", FileType.GRAPHIC_PNG, R.drawable.sdl_logo_, false); // some voice commands List voice2 = Collections.singletonList("Cell two"); diff --git a/app/src/main/res/drawable/blanco_grande.png b/app/src/main/res/drawable/blanco_grande.png new file mode 100644 index 0000000..6720d69 Binary files /dev/null and b/app/src/main/res/drawable/blanco_grande.png differ diff --git a/app/src/main/res/drawable/sdl_logo_.png b/app/src/main/res/drawable/sdl_logo_.png new file mode 100644 index 0000000..ac29361 Binary files /dev/null and b/app/src/main/res/drawable/sdl_logo_.png differ