jefry пре 4 година
родитељ
комит
b410f3028d
28 измењених фајлова са 112 додато и 28 уклоњено
  1. BIN
      android/app/assetKey.jks
  2. +15
    -2
      android/app/build.gradle
  3. +2
    -2
      android/app/src/main/AndroidManifest.xml
  4. BIN
      android/app/src/main/res/mipmap-hdpi/launcher_icon.png
  5. BIN
      android/app/src/main/res/mipmap-mdpi/launcher_icon.png
  6. BIN
      android/app/src/main/res/mipmap-xhdpi/launcher_icon.png
  7. BIN
      android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png
  8. BIN
      android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png
  9. +4
    -0
      android/key.properties
  10. BIN
      asset/icon.png
  11. +1
    -1
      ios/Runner.xcodeproj/project.pbxproj
  12. BIN
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
  13. BIN
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
  14. BIN
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
  15. BIN
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
  16. BIN
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
  17. BIN
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
  18. BIN
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
  19. BIN
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
  20. BIN
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
  21. BIN
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
  22. BIN
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
  23. BIN
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
  24. BIN
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
  25. BIN
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
  26. BIN
      ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
  27. +82
    -19
      pubspec.lock
  28. +8
    -4
      pubspec.yaml

BIN
android/app/assetKey.jks Прегледај датотеку


+ 15
- 2
android/app/build.gradle Прегледај датотеку

@@ -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 Прегледај датотеку

@@ -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
android/app/src/main/res/mipmap-hdpi/launcher_icon.png Прегледај датотеку

Before After
Width: 72  |  Height: 72  |  Size: 8.0 KiB

BIN
android/app/src/main/res/mipmap-mdpi/launcher_icon.png Прегледај датотеку

Before After
Width: 48  |  Height: 48  |  Size: 4.3 KiB

BIN
android/app/src/main/res/mipmap-xhdpi/launcher_icon.png Прегледај датотеку

Before After
Width: 96  |  Height: 96  |  Size: 12 KiB

BIN
android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png Прегледај датотеку

Before After
Width: 144  |  Height: 144  |  Size: 24 KiB

BIN
android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png Прегледај датотеку

Before After
Width: 192  |  Height: 192  |  Size: 37 KiB

+ 4
- 0
android/key.properties Прегледај датотеку

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

BIN
asset/icon.png Прегледај датотеку

Before After
Width: 512  |  Height: 512  |  Size: 161 KiB

+ 1
- 1
ios/Runner.xcodeproj/project.pbxproj Прегледај датотеку

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

BIN
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png Прегледај датотеку

Before After
Width: 1024  |  Height: 1024  |  Size: 11 KiB Width: 1024  |  Height: 1024  |  Size: 426 KiB

BIN
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png Прегледај датотеку

Before After
Width: 20  |  Height: 20  |  Size: 564 B Width: 20  |  Height: 20  |  Size: 1.2 KiB

BIN
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png Прегледај датотеку

Before After
Width: 40  |  Height: 40  |  Size: 1.3 KiB Width: 40  |  Height: 40  |  Size: 3.2 KiB

BIN
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png Прегледај датотеку

Before After
Width: 60  |  Height: 60  |  Size: 1.6 KiB Width: 60  |  Height: 60  |  Size: 6.0 KiB

BIN
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png Прегледај датотеку

Before After
Width: 29  |  Height: 29  |  Size: 1.0 KiB Width: 29  |  Height: 29  |  Size: 2.0 KiB

BIN
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png Прегледај датотеку

Before After
Width: 58  |  Height: 58  |  Size: 1.7 KiB Width: 58  |  Height: 58  |  Size: 5.7 KiB

BIN
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png Прегледај датотеку

Before After
Width: 87  |  Height: 87  |  Size: 1.9 KiB Width: 87  |  Height: 87  |  Size: 11 KiB

BIN
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png Прегледај датотеку

Before After
Width: 40  |  Height: 40  |  Size: 1.3 KiB Width: 40  |  Height: 40  |  Size: 3.2 KiB

BIN
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png Прегледај датотеку

Before After
Width: 80  |  Height: 80  |  Size: 1.9 KiB Width: 80  |  Height: 80  |  Size: 9.3 KiB

BIN
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png Прегледај датотеку

Before After
Width: 120  |  Height: 120  |  Size: 2.6 KiB Width: 120  |  Height: 120  |  Size: 18 KiB

BIN
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png Прегледај датотеку

Before After
Width: 120  |  Height: 120  |  Size: 2.6 KiB Width: 120  |  Height: 120  |  Size: 18 KiB

BIN
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png Прегледај датотеку

Before After
Width: 180  |  Height: 180  |  Size: 3.7 KiB Width: 180  |  Height: 180  |  Size: 33 KiB

BIN
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png Прегледај датотеку

Before After
Width: 76  |  Height: 76  |  Size: 1.8 KiB Width: 76  |  Height: 76  |  Size: 8.6 KiB

BIN
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png Прегледај датотеку

Before After
Width: 152  |  Height: 152  |  Size: 3.2 KiB Width: 152  |  Height: 152  |  Size: 26 KiB

BIN
ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png Прегледај датотеку

Before After
Width: 167  |  Height: 167  |  Size: 3.5 KiB Width: 167  |  Height: 167  |  Size: 29 KiB

+ 82
- 19
pubspec.lock Прегледај датотеку

@@ -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 Прегледај датотеку

@@ -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


Loading…
Откажи
Сачувај