Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ffbeccec5d | ||
|
|
05dd2dff52 | ||
|
|
b04b699ad0 | ||
|
|
a73d27036c | ||
|
|
686a631c27 | ||
|
|
8b88b50c1f | ||
|
|
44581c12c5 | ||
|
|
679ed5d286 | ||
|
|
17ef37b45a | ||
|
|
e5249795f3 | ||
|
|
ce085a731f | ||
|
|
19b715192a | ||
|
|
077b373052 | ||
|
|
157fefc2af | ||
|
|
91d83806a1 | ||
|
|
54310a3d54 | ||
|
|
052be4a7db |
11
README.md
@ -52,3 +52,14 @@ flutter build appbundle
|
|||||||
|
|
||||||
Faut pas oublier d'aller changer la version avant chaque upload de version (Puis mettre l'app bundle dans le dossier du PC, peut-être mettre sur le repos aussi ?)
|
Faut pas oublier d'aller changer la version avant chaque upload de version (Puis mettre l'app bundle dans le dossier du PC, peut-être mettre sur le repos aussi ?)
|
||||||
|
|
||||||
|
# update app
|
||||||
|
|
||||||
|
1) Mettre à jour l'instance Id
|
||||||
|
- MDLF : 65ccc67265373befd15be511
|
||||||
|
- Fort : 633ee379d9405f32f166f047
|
||||||
|
2) Mettre à jour l'icone (dans pubspec.yaml ref icon)
|
||||||
|
-> https://easyappicon.com/
|
||||||
|
3) Mettre à jour android manifest et info.plist (faire un CTRL MAJ F et replace..)
|
||||||
|
- be.unov.myinfomate.mdlf
|
||||||
|
- android : be.unov.mymuseum.fortsaintheribert - iod: be.unov.myvisit.mymuseumVisitapp
|
||||||
|
4) Mettre à jour les couleurs de l'app
|
||||||
|
|||||||
@ -1,3 +1,10 @@
|
|||||||
|
plugins {
|
||||||
|
id "com.android.application"
|
||||||
|
id "kotlin-android"
|
||||||
|
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
|
||||||
|
id "dev.flutter.flutter-gradle-plugin"
|
||||||
|
}
|
||||||
|
|
||||||
def localProperties = new Properties()
|
def localProperties = new Properties()
|
||||||
def localPropertiesFile = rootProject.file('local.properties')
|
def localPropertiesFile = rootProject.file('local.properties')
|
||||||
if (localPropertiesFile.exists()) {
|
if (localPropertiesFile.exists()) {
|
||||||
@ -12,10 +19,10 @@ if (keystorePropertiesFile.exists()) {
|
|||||||
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
||||||
}
|
}
|
||||||
|
|
||||||
def flutterRoot = localProperties.getProperty('flutter.sdk')
|
/*def flutterRoot = localProperties.getProperty('flutter.sdk')
|
||||||
if (flutterRoot == null) {
|
if (flutterRoot == null) {
|
||||||
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
|
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
|
||||||
}
|
}*/
|
||||||
|
|
||||||
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
|
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
|
||||||
if (flutterVersionCode == null) {
|
if (flutterVersionCode == null) {
|
||||||
@ -27,9 +34,9 @@ if (flutterVersionName == null) {
|
|||||||
flutterVersionName = '1.0'
|
flutterVersionName = '1.0'
|
||||||
}
|
}
|
||||||
|
|
||||||
apply plugin: 'com.android.application'
|
/*apply plugin: 'com.android.application'
|
||||||
apply plugin: 'kotlin-android'
|
apply plugin: 'kotlin-android'
|
||||||
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
|
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"*/
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 34
|
compileSdkVersion 34
|
||||||
@ -49,7 +56,7 @@ android {
|
|||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
||||||
applicationId "be.unov.myinfomate.mdlf" // Update for mdlf and other clients -- "be.unov.mymuseum.fortsaintheribert"
|
applicationId "be.unov.mymuseum.fortsaintheribert" // Update for mdlf and other clients -- "be.unov.mymuseum.fortsaintheribert" // be.unov.myinfomate.mdlf
|
||||||
minSdkVersion flutter.minSdkVersion
|
minSdkVersion flutter.minSdkVersion
|
||||||
targetSdkVersion flutter.targetSdkVersion
|
targetSdkVersion flutter.targetSdkVersion
|
||||||
versionCode flutterVersionCode.toInteger()
|
versionCode flutterVersionCode.toInteger()
|
||||||
@ -81,6 +88,6 @@ flutter {
|
|||||||
source '../..'
|
source '../..'
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
/*dependencies {
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
||||||
}
|
}*/
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="be.unov.myinfomate.mdlf">
|
package="be.unov.mymuseum.fortsaintheribert">
|
||||||
<!-- Flutter needs it to communicate with the running application
|
<!-- Flutter needs it to communicate with the running application
|
||||||
to allow setting breakpoints, to provide hot reload, etc.
|
to allow setting breakpoints, to provide hot reload, etc.
|
||||||
-->
|
-->
|
||||||
|
|||||||
@ -1,11 +1,12 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="be.unov.myinfomate.mdlf">
|
package="be.unov.mymuseum.fortsaintheribert">
|
||||||
|
<!-- package="be.unov.myinfomate.mdlf"> -->
|
||||||
<uses-permission android:name="android.permission.INTERNET"/>
|
<uses-permission android:name="android.permission.INTERNET"/>
|
||||||
<uses-permission android:name="android.permission.CAMERA" />
|
<uses-permission android:name="android.permission.CAMERA" />
|
||||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
||||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
||||||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
|
||||||
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />
|
<!--<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />-->
|
||||||
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
|
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
|
||||||
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
|
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
|
||||||
|
|
||||||
@ -17,12 +18,12 @@
|
|||||||
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
|
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
|
||||||
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
|
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
|
||||||
<uses-feature android:name="android.hardware.camera" />-->
|
<uses-feature android:name="android.hardware.camera" />-->
|
||||||
<!-- android:label="Fort Saint Héribert" -->
|
<!-- android:label="Fort Saint Héribert" "Musée de la fraise" -->
|
||||||
<application
|
<application
|
||||||
android:label="Musée de la fraise"
|
android:label="Fort Saint Héribert"
|
||||||
android:name="${applicationName}"
|
android:name="${applicationName}"
|
||||||
android:usesCleartextTraffic="true"
|
android:usesCleartextTraffic="true"
|
||||||
android:icon="@mipmap/launcher_icon">
|
android:icon="@mipmap/ic_launcher">
|
||||||
<activity
|
<activity
|
||||||
android:name=".MainActivity"
|
android:name=".MainActivity"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
@ -50,5 +51,9 @@
|
|||||||
<meta-data
|
<meta-data
|
||||||
android:name="flutterEmbedding"
|
android:name="flutterEmbedding"
|
||||||
android:value="2" />
|
android:value="2" />
|
||||||
|
|
||||||
|
<meta-data
|
||||||
|
android:name="com.google.firebase.messaging.default_notification_icon"
|
||||||
|
android:resource="@drawable/logo" />
|
||||||
</application>
|
</application>
|
||||||
</manifest>
|
</manifest>
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
package be.unov.myinfomate.mdlf
|
package be.unov.mymuseum.fortsaintheribert
|
||||||
|
|
||||||
import io.flutter.embedding.android.FlutterActivity
|
import io.flutter.embedding.android.FlutterActivity
|
||||||
|
|
||||||
|
|||||||
BIN
android/app/src/main/res/drawable/logo.png
Normal file
|
After Width: | Height: | Size: 6.0 KiB |
BIN
android/app/src/main/res/ic_launcher-web.png
Normal file
|
After Width: | Height: | Size: 446 KiB |
@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<background android:drawable="@color/ic_launcher_background"/>
|
||||||
|
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
|
||||||
|
</adaptive-icon>
|
||||||
@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<background android:drawable="@color/ic_launcher_background"/>
|
||||||
|
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
|
||||||
|
</adaptive-icon>
|
||||||
|
Before Width: | Height: | Size: 544 B After Width: | Height: | Size: 9.1 KiB |
BIN
android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 6.0 KiB |
BIN
android/app/src/main/res/mipmap-ldpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 442 B After Width: | Height: | Size: 4.4 KiB |
BIN
android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
|
Before Width: | Height: | Size: 3.0 KiB |
|
Before Width: | Height: | Size: 721 B After Width: | Height: | Size: 15 KiB |
BIN
android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 134 KiB |
BIN
android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 62 KiB |
|
After Width: | Height: | Size: 243 KiB |
BIN
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 67 KiB |
|
Before Width: | Height: | Size: 35 KiB |
BIN
android/app/src/main/res/playstore-icon.png
Normal file
|
After Width: | Height: | Size: 636 KiB |
@ -3,7 +3,7 @@
|
|||||||
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
|
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
|
||||||
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
||||||
<!-- Show a splash screen on the activity. Automatically removed when
|
<!-- Show a splash screen on the activity. Automatically removed when
|
||||||
Flutter draws its first frame -->
|
the Flutter engine draws its first frame -->
|
||||||
<item name="android:windowBackground">@drawable/launch_background</item>
|
<item name="android:windowBackground">@drawable/launch_background</item>
|
||||||
</style>
|
</style>
|
||||||
<!-- Theme applied to the Android Window as soon as the process has started.
|
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||||
|
|||||||
4
android/app/src/main/res/values/colors.xml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<color name="colorPrimary">#FF8535</color>
|
||||||
|
</resources>
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<color name="ic_launcher_background">#7f845b</color>
|
||||||
|
</resources>
|
||||||
15
android/app/src/main/res/values/strings.xml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<string name="app_name">MyHomie</string>
|
||||||
|
|
||||||
|
<!-- Replace "000000000000" with your Facebook App ID here. -->
|
||||||
|
<!-- <string name="facebook_app_id">742185533300745</string> -->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Replace "000000000000" with your Facebook App ID here.
|
||||||
|
**NOTE**: The scheme needs to start with `fb` and then your ID.
|
||||||
|
-->
|
||||||
|
<!--<string name="fb_login_protocol_scheme">fb742185533300745</string>-->
|
||||||
|
|
||||||
|
<string name="default_notification_channel_id">main</string>
|
||||||
|
</resources>
|
||||||
@ -3,7 +3,7 @@
|
|||||||
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
|
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
|
||||||
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
||||||
<!-- Show a splash screen on the activity. Automatically removed when
|
<!-- Show a splash screen on the activity. Automatically removed when
|
||||||
Flutter draws its first frame -->
|
the Flutter engine draws its first frame -->
|
||||||
<item name="android:windowBackground">@drawable/launch_background</item>
|
<item name="android:windowBackground">@drawable/launch_background</item>
|
||||||
</style>
|
</style>
|
||||||
<!-- Theme applied to the Android Window as soon as the process has started.
|
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="be.unov.myinfomate.mdlf">
|
package="be.unov.mymuseum.fortsaintheribert">
|
||||||
<!-- Flutter needs it to communicate with the running application
|
<!-- Flutter needs it to communicate with the running application
|
||||||
to allow setting breakpoints, to provide hot reload, etc.
|
to allow setting breakpoints, to provide hot reload, etc.
|
||||||
-->
|
-->
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
buildscript {
|
/*buildscript {
|
||||||
ext.kotlin_version = '1.9.0'
|
ext.kotlin_version = '1.9.0'
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
google()
|
||||||
@ -9,7 +9,7 @@ buildscript {
|
|||||||
classpath 'com.android.tools.build:gradle:7.2.0'
|
classpath 'com.android.tools.build:gradle:7.2.0'
|
||||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||||
}
|
}
|
||||||
}
|
}*/
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
repositories {
|
repositories {
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
include ':app'
|
/*include ':app'
|
||||||
|
|
||||||
def localPropertiesFile = new File(rootProject.projectDir, "local.properties")
|
def localPropertiesFile = new File(rootProject.projectDir, "local.properties")
|
||||||
def properties = new Properties()
|
def properties = new Properties()
|
||||||
@ -9,3 +9,30 @@ localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) }
|
|||||||
def flutterSdkPath = properties.getProperty("flutter.sdk")
|
def flutterSdkPath = properties.getProperty("flutter.sdk")
|
||||||
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
|
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
|
||||||
apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"
|
apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"
|
||||||
|
*/
|
||||||
|
|
||||||
|
pluginManagement {
|
||||||
|
def flutterSdkPath = {
|
||||||
|
def properties = new Properties()
|
||||||
|
file("local.properties").withInputStream { properties.load(it) }
|
||||||
|
def flutterSdkPath = properties.getProperty("flutter.sdk")
|
||||||
|
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
|
||||||
|
return flutterSdkPath
|
||||||
|
}()
|
||||||
|
|
||||||
|
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
google()
|
||||||
|
mavenCentral()
|
||||||
|
gradlePluginPortal()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
|
||||||
|
id "com.android.application" version "7.2.0" apply false
|
||||||
|
id "org.jetbrains.kotlin.android" version "1.9.0" apply false
|
||||||
|
}
|
||||||
|
|
||||||
|
include ":app"
|
||||||
|
Before Width: | Height: | Size: 18 KiB |
BIN
assets/icons/icon.png
Normal file
|
After Width: | Height: | Size: 908 KiB |
BIN
assets/icons/icon_fort.png
Normal file
|
After Width: | Height: | Size: 908 KiB |
|
Before Width: | Height: | Size: 167 KiB After Width: | Height: | Size: 167 KiB |
BIN
assets/icons/icons_round/fort/android/ic_launcher-web.png
Normal file
|
After Width: | Height: | Size: 446 KiB |
@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<background android:drawable="@color/ic_launcher_background"/>
|
||||||
|
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
|
||||||
|
</adaptive-icon>
|
||||||
@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<background android:drawable="@color/ic_launcher_background"/>
|
||||||
|
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
|
||||||
|
</adaptive-icon>
|
||||||
|
After Width: | Height: | Size: 9.1 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 5.2 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 54 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 134 KiB |
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 62 KiB |
|
After Width: | Height: | Size: 243 KiB |
|
After Width: | Height: | Size: 67 KiB |
BIN
assets/icons/icons_round/fort/android/playstore-icon.png
Normal file
|
After Width: | Height: | Size: 636 KiB |
@ -0,0 +1,4 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<color name="ic_launcher_background">#7f845b</color>
|
||||||
|
</resources>
|
||||||
@ -0,0 +1,128 @@
|
|||||||
|
{
|
||||||
|
"images":[
|
||||||
|
{
|
||||||
|
"idiom":"iphone",
|
||||||
|
"size":"20x20",
|
||||||
|
"scale":"2x",
|
||||||
|
"filename":"Icon-App-20x20@2x.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom":"iphone",
|
||||||
|
"size":"20x20",
|
||||||
|
"scale":"3x",
|
||||||
|
"filename":"Icon-App-20x20@3x.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom":"iphone",
|
||||||
|
"size":"29x29",
|
||||||
|
"scale":"1x",
|
||||||
|
"filename":"Icon-App-29x29@1x.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom":"iphone",
|
||||||
|
"size":"29x29",
|
||||||
|
"scale":"2x",
|
||||||
|
"filename":"Icon-App-29x29@2x.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom":"iphone",
|
||||||
|
"size":"29x29",
|
||||||
|
"scale":"3x",
|
||||||
|
"filename":"Icon-App-29x29@3x.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom":"iphone",
|
||||||
|
"size":"40x40",
|
||||||
|
"scale":"2x",
|
||||||
|
"filename":"Icon-App-40x40@2x.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom":"iphone",
|
||||||
|
"size":"40x40",
|
||||||
|
"scale":"3x",
|
||||||
|
"filename":"Icon-App-40x40@3x.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom":"iphone",
|
||||||
|
"size":"60x60",
|
||||||
|
"scale":"2x",
|
||||||
|
"filename":"Icon-App-60x60@2x.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom":"iphone",
|
||||||
|
"size":"60x60",
|
||||||
|
"scale":"3x",
|
||||||
|
"filename":"Icon-App-60x60@3x.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom":"iphone",
|
||||||
|
"size":"76x76",
|
||||||
|
"scale":"2x",
|
||||||
|
"filename":"Icon-App-76x76@2x.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom":"ipad",
|
||||||
|
"size":"20x20",
|
||||||
|
"scale":"1x",
|
||||||
|
"filename":"Icon-App-20x20@1x.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom":"ipad",
|
||||||
|
"size":"20x20",
|
||||||
|
"scale":"2x",
|
||||||
|
"filename":"Icon-App-20x20@2x.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom":"ipad",
|
||||||
|
"size":"29x29",
|
||||||
|
"scale":"1x",
|
||||||
|
"filename":"Icon-App-29x29@1x.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom":"ipad",
|
||||||
|
"size":"29x29",
|
||||||
|
"scale":"2x",
|
||||||
|
"filename":"Icon-App-29x29@2x.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom":"ipad",
|
||||||
|
"size":"40x40",
|
||||||
|
"scale":"1x",
|
||||||
|
"filename":"Icon-App-40x40@1x.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom":"ipad",
|
||||||
|
"size":"40x40",
|
||||||
|
"scale":"2x",
|
||||||
|
"filename":"Icon-App-40x40@2x.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom":"ipad",
|
||||||
|
"size":"76x76",
|
||||||
|
"scale":"1x",
|
||||||
|
"filename":"Icon-App-76x76@1x.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom":"ipad",
|
||||||
|
"size":"76x76",
|
||||||
|
"scale":"2x",
|
||||||
|
"filename":"Icon-App-76x76@2x.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom":"ipad",
|
||||||
|
"size":"83.5x83.5",
|
||||||
|
"scale":"2x",
|
||||||
|
"filename":"Icon-App-83.5x83.5@2x.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"size" : "1024x1024",
|
||||||
|
"idiom" : "ios-marketing",
|
||||||
|
"scale" : "1x",
|
||||||
|
"filename" : "ItunesArtwork@2x.png"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"info":{
|
||||||
|
"version":1,
|
||||||
|
"author":"easyappicon"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 7.5 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 6.8 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 79 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 48 KiB |
|
After Width: | Height: | Size: 62 KiB |
|
After Width: | Height: | Size: 2.0 MiB |
BIN
assets/icons/icons_round/fort/ios/iTunesArtwork@1x.png
Normal file
|
After Width: | Height: | Size: 636 KiB |
BIN
assets/icons/icons_round/fort/ios/iTunesArtwork@2x.png
Normal file
|
After Width: | Height: | Size: 2.0 MiB |
BIN
assets/icons/icons_round/fort/ios/iTunesArtwork@3x.png
Normal file
|
After Width: | Height: | Size: 3.8 MiB |
BIN
assets/icons/icons_round/mdlf/android/ic_launcher-web.png
Normal file
|
After Width: | Height: | Size: 145 KiB |
@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<background android:drawable="@color/ic_launcher_background"/>
|
||||||
|
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
|
||||||
|
</adaptive-icon>
|
||||||
@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<background android:drawable="@color/ic_launcher_background"/>
|
||||||
|
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
|
||||||
|
</adaptive-icon>
|
||||||
|
After Width: | Height: | Size: 5.6 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 8.5 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 7.9 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 8.2 KiB |
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 66 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 27 KiB |