Add new icon
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
<application
|
<application
|
||||||
android:allowBackup="true"
|
android:allowBackup="true"
|
||||||
android:icon="@drawable/ic_launcher"
|
android:icon="@mipmap/ic_launcher"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:theme="@style/GdxTheme" >
|
android:theme="@style/GdxTheme" >
|
||||||
<activity
|
<activity
|
||||||
|
|
BIN
android/assets/ic_launcher/icon128.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
android/assets/ic_launcher/icon16.png
Normal file
After Width: | Height: | Size: 560 B |
BIN
android/assets/ic_launcher/icon32.png
Normal file
After Width: | Height: | Size: 1 KiB |
Before Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 19 KiB |
BIN
android/res/mipmap-hdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
android/res/mipmap-mdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
android/res/mipmap-xhdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
android/res/mipmap-xxhdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 4.8 KiB |
BIN
android/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 6.5 KiB |
|
@ -1,5 +1,6 @@
|
||||||
package io.github.lonamiwebs.klooni.desktop;
|
package io.github.lonamiwebs.klooni.desktop;
|
||||||
|
|
||||||
|
import com.badlogic.gdx.Files;
|
||||||
import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
|
import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
|
||||||
import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration;
|
import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration;
|
||||||
import io.github.lonamiwebs.klooni.Klooni;
|
import io.github.lonamiwebs.klooni.Klooni;
|
||||||
|
@ -7,8 +8,12 @@ import io.github.lonamiwebs.klooni.Klooni;
|
||||||
public class DesktopLauncher {
|
public class DesktopLauncher {
|
||||||
public static void main (String[] arg) {
|
public static void main (String[] arg) {
|
||||||
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
|
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
|
||||||
|
config.title = "1010! Klooni";
|
||||||
config.width = 408;
|
config.width = 408;
|
||||||
config.height = 680;
|
config.height = 680;
|
||||||
|
config.addIcon("ic_launcher/icon128.png", Files.FileType.Internal);
|
||||||
|
config.addIcon("ic_launcher/icon32.png", Files.FileType.Internal);
|
||||||
|
config.addIcon("ic_launcher/icon16.png", Files.FileType.Internal);
|
||||||
new LwjglApplication(new Klooni(), config);
|
new LwjglApplication(new Klooni(), config);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|