jefry před 4 roky
rodič
revize
b410f3028d
28 změnil soubory, kde provedl 112 přidání a 28 odebrání
  1. binární
      android/app/assetKey.jks
  2. +15
    -2
      android/app/build.gradle
  3. +2
    -2
      android/app/src/main/AndroidManifest.xml
  4. binární
      android/app/src/main/res/mipmap-hdpi/launcher_icon.png
  5. binární
      android/app/src/main/res/mipmap-mdpi/launcher_icon.png
  6. binární
      android/app/src/main/res/mipmap-xhdpi/launcher_icon.png
  7. binární
      android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png
  8. binární
      android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png
  9. +4
    -0
      android/key.properties
  10. binární
      asset/icon.png
  11. +1
    -1
      ios/Runner.xcodeproj/project.pbxproj
  12. binární
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
  13. binární
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
  14. binární
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
  15. binární
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
  16. binární
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
  17. binární
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
  18. binární
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
  19. binární
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
  20. binární
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
  21. binární
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
  22. binární
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
  23. binární
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
  24. binární
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
  25. binární
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
  26. binární
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
  27. +82
    -19
      pubspec.lock
  28. +8
    -4
      pubspec.yaml

binární
android/app/assetKey.jks Zobrazit soubor


+ 15
- 2
android/app/build.gradle Zobrazit soubor

@@ -25,6 +25,12 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}

android {
compileSdkVersion 28

@@ -44,12 +50,19 @@ android {
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}

signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
storePassword keystoreProperties['storePassword']
}
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
signingConfig signingConfigs.release
}
}
}


+ 2
- 2
android/app/src/main/AndroidManifest.xml Zobrazit soubor

@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.assetstock">
package="com.thamringroup.assetstock">
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
calls FlutterMain.startInitialization(this); in its onCreate method.
In most cases you can leave this as-is, but you if you want to provide
@@ -9,7 +9,7 @@
<application
android:name="io.flutter.app.FlutterApplication"
android:label="assetstock"
android:icon="@mipmap/ic_launcher">
android:icon="@mipmap/launcher_icon">
<activity
android:name=".MainActivity"
android:launchMode="singleTop"


binární
android/app/src/main/res/mipmap-hdpi/launcher_icon.png Zobrazit soubor

Před Za
Šířka: 72  |  Výška: 72  |  Velikost: 8.0 KiB

binární
android/app/src/main/res/mipmap-mdpi/launcher_icon.png Zobrazit soubor

Před Za
Šířka: 48  |  Výška: 48  |  Velikost: 4.3 KiB

binární
android/app/src/main/res/mipmap-xhdpi/launcher_icon.png Zobrazit soubor

Před Za
Šířka: 96  |  Výška: 96  |  Velikost: 12 KiB

binární
android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png Zobrazit soubor

Před Za
Šířka: 144  |  Výška: 144  |  Velikost: 24 KiB

binární
android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png Zobrazit soubor

Před Za
Šířka: 192  |  Výška: 192  |  Velikost: 37 KiB

+ 4
- 0
android/key.properties Zobrazit soubor

@@ -0,0 +1,4 @@
storePassword=Thamrin1234
keyPassword=Thamrin1234
keyAlias=key
storeFile=\\assetKey.jks

binární
asset/icon.png Zobrazit soubor

Před Za
Šířka: 512  |  Výška: 512  |  Velikost: 161 KiB

+ 1
- 1
ios/Runner.xcodeproj/project.pbxproj Zobrazit soubor

@@ -503,4 +503,4 @@
/* End XCConfigurationList section */
};
rootObject = 97C146E61CF9000F007C117D /* Project object */;
}
}

binární
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png Zobrazit soubor

Před Za
Šířka: 1024  |  Výška: 1024  |  Velikost: 11 KiB Šířka: 1024  |  Výška: 1024  |  Velikost: 426 KiB

binární
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png Zobrazit soubor

Před Za
Šířka: 20  |  Výška: 20  |  Velikost: 564 B Šířka: 20  |  Výška: 20  |  Velikost: 1.2 KiB

binární
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png Zobrazit soubor

Před Za
Šířka: 40  |  Výška: 40  |  Velikost: 1.3 KiB Šířka: 40  |  Výška: 40  |  Velikost: 3.2 KiB

binární
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png Zobrazit soubor

Před Za
Šířka: 60  |  Výška: 60  |  Velikost: 1.6 KiB Šířka: 60  |  Výška: 60  |  Velikost: 6.0 KiB

binární
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png Zobrazit soubor

Před Za
Šířka: 29  |  Výška: 29  |  Velikost: 1.0 KiB Šířka: 29  |  Výška: 29  |  Velikost: 2.0 KiB

binární
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png Zobrazit soubor

Před Za
Šířka: 58  |  Výška: 58  |  Velikost: 1.7 KiB Šířka: 58  |  Výška: 58  |  Velikost: 5.7 KiB

binární
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png Zobrazit soubor

Před Za
Šířka: 87  |  Výška: 87  |  Velikost: 1.9 KiB Šířka: 87  |  Výška: 87  |  Velikost: 11 KiB

binární
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png Zobrazit soubor

Před Za
Šířka: 40  |  Výška: 40  |  Velikost: 1.3 KiB Šířka: 40  |  Výška: 40  |  Velikost: 3.2 KiB

binární
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png Zobrazit soubor

Před Za
Šířka: 80  |  Výška: 80  |  Velikost: 1.9 KiB Šířka: 80  |  Výška: 80  |  Velikost: 9.3 KiB

binární
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png Zobrazit soubor

Před Za
Šířka: 120  |  Výška: 120  |  Velikost: 2.6 KiB Šířka: 120  |  Výška: 120  |  Velikost: 18 KiB

binární
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png Zobrazit soubor

Před Za
Šířka: 120  |  Výška: 120  |  Velikost: 2.6 KiB Šířka: 120  |  Výška: 120  |  Velikost: 18 KiB

binární
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png Zobrazit soubor

Před Za
Šířka: 180  |  Výška: 180  |  Velikost: 3.7 KiB Šířka: 180  |  Výška: 180  |  Velikost: 33 KiB

binární
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png Zobrazit soubor

Před Za
Šířka: 76  |  Výška: 76  |  Velikost: 1.8 KiB Šířka: 76  |  Výška: 76  |  Velikost: 8.6 KiB

binární
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png Zobrazit soubor

Před Za
Šířka: 152  |  Výška: 152  |  Velikost: 3.2 KiB Šířka: 152  |  Výška: 152  |  Velikost: 26 KiB

binární
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png Zobrazit soubor

Před Za
Šířka: 167  |  Výška: 167  |  Velikost: 3.5 KiB Šířka: 167  |  Výška: 167  |  Velikost: 29 KiB

+ 82
- 19
pubspec.lock Zobrazit soubor

@@ -1,13 +1,27 @@
# Generated by pub
# See https://dart.dev/tools/pub/glossary#lockfile
packages:
archive:
dependency: transitive
description:
name: archive
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.13"
args:
dependency: transitive
description:
name: args
url: "https://pub.dartlang.org"
source: hosted
version: "1.6.0"
async:
dependency: transitive
description:
name: async
url: "https://pub.dartlang.org"
source: hosted
version: "2.4.2"
version: "2.5.0-nullsafety.1"
barcode_scan:
dependency: "direct main"
description:
@@ -21,35 +35,49 @@ packages:
name: boolean_selector
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.0"
version: "2.1.0-nullsafety.1"
characters:
dependency: transitive
description:
name: characters
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.0"
version: "1.1.0-nullsafety.3"
charcode:
dependency: transitive
description:
name: charcode
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.3"
version: "1.2.0-nullsafety.1"
clock:
dependency: transitive
description:
name: clock
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.1"
version: "1.1.0-nullsafety.1"
collection:
dependency: transitive
description:
name: collection
url: "https://pub.dartlang.org"
source: hosted
version: "1.14.13"
version: "1.15.0-nullsafety.3"
convert:
dependency: transitive
description:
name: convert
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.1"
crypto:
dependency: transitive
description:
name: crypto
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.5"
cupertino_icons:
dependency: "direct main"
description:
@@ -63,7 +91,7 @@ packages:
name: fake_async
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.0"
version: "1.2.0-nullsafety.1"
file:
dependency: transitive
description:
@@ -83,6 +111,13 @@ packages:
description: flutter
source: sdk
version: "0.0.0"
flutter_launcher_icons:
dependency: "direct dev"
description:
name: flutter_launcher_icons
url: "https://pub.dartlang.org"
source: hosted
version: "0.8.1"
flutter_plugin_android_lifecycle:
dependency: transitive
description:
@@ -121,6 +156,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "3.1.4"
image:
dependency: transitive
description:
name: image
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.19"
image_picker:
dependency: "direct main"
description:
@@ -148,7 +190,7 @@ packages:
name: matcher
url: "https://pub.dartlang.org"
source: hosted
version: "0.12.8"
version: "0.12.10-nullsafety.1"
matrix_gesture_detector:
dependency: "direct main"
description:
@@ -162,14 +204,14 @@ packages:
name: meta
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.8"
version: "1.3.0-nullsafety.3"
path:
dependency: transitive
description:
name: path
url: "https://pub.dartlang.org"
source: hosted
version: "1.7.0"
version: "1.8.0-nullsafety.1"
path_provider:
dependency: "direct main"
description:
@@ -205,6 +247,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "1.9.0"
petitparser:
dependency: transitive
description:
name: petitparser
url: "https://pub.dartlang.org"
source: hosted
version: "3.1.0"
photo_view:
dependency: "direct main"
description:
@@ -279,7 +328,7 @@ packages:
name: source_span
url: "https://pub.dartlang.org"
source: hosted
version: "1.7.0"
version: "1.8.0-nullsafety.2"
sqflite:
dependency: "direct main"
description:
@@ -300,21 +349,21 @@ packages:
name: stack_trace
url: "https://pub.dartlang.org"
source: hosted
version: "1.9.5"
version: "1.10.0-nullsafety.1"
stream_channel:
dependency: transitive
description:
name: stream_channel
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.0"
version: "2.1.0-nullsafety.1"
string_scanner:
dependency: transitive
description:
name: string_scanner
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.5"
version: "1.1.0-nullsafety.1"
synchronized:
dependency: transitive
description:
@@ -328,28 +377,28 @@ packages:
name: term_glyph
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.0"
version: "1.2.0-nullsafety.1"
test_api:
dependency: transitive
description:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.17"
version: "0.2.19-nullsafety.2"
typed_data:
dependency: transitive
description:
name: typed_data
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.0"
version: "1.3.0-nullsafety.3"
vector_math:
dependency: transitive
description:
name: vector_math
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.8"
version: "2.1.0-nullsafety.3"
xdg_directories:
dependency: transitive
description:
@@ -357,6 +406,20 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.0"
xml:
dependency: transitive
description:
name: xml
url: "https://pub.dartlang.org"
source: hosted
version: "4.5.1"
yaml:
dependency: transitive
description:
name: yaml
url: "https://pub.dartlang.org"
source: hosted
version: "2.2.1"
sdks:
dart: ">=2.9.0-14.0.dev <3.0.0"
dart: ">=2.10.0-110 <2.11.0"
flutter: ">=1.12.13+hotfix.5 <2.0.0"

+ 8
- 4
pubspec.yaml Zobrazit soubor

@@ -3,8 +3,6 @@ description: Application to check assets

# The following line prevents the package from being accidentally published to
# pub.dev using `pub publish`. This is preferred for private packages.
publish_to: 'none' # Remove this line if you wish to publish to pub.dev

# The following defines the version and build number for your application.
# A version number is three numbers separated by dots, like 1.2.43
# followed by an optional build number separated by a +.
@@ -15,7 +13,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.0.4+5
version: 1.0.0+1

environment:
sdk: ">=2.7.0 <3.0.0"
@@ -36,9 +34,14 @@ dependencies:
cupertino_icons: ^0.1.3

dev_dependencies:
flutter_launcher_icons:
flutter_test:
sdk: flutter

flutter_icons:
android: "launcher_icon"
ios: true
image_path: "asset/icon.png"
# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec

@@ -48,7 +51,8 @@ flutter:
# included with your application, so that you can use the icons in
# the material Icons class.
uses-material-design: true

assets:
- asset/icon.png
# To add assets to your application, add an assets section, like this:
# assets:
# - images/a_dot_burr.jpeg


Načítá se…
Zrušit
Uložit