my app works fine while the app is NOT closed in background, i get notifications every 10 seconds, but whenever i kill the app in background, the schedule does not get executed anymore.
System info
Issue occurs on: Android
Plugin name: android_alarm_manager_plus
Plugin version: ^2.0.3
Flutter doctor output:
Doctor summary (to see all details, run flutter doctor -v):
[√] Flutter (Channel stable, 2.8.0, on Microsoft Windows [Version 10.0.19043.1415], locale en-US)
[√] Android toolchain - develop for Android devices (Android SDK version 32.0.0)
[X] Chrome - develop for the web (Cannot find Chrome executable at .\Google\Chrome\Application\chrome.exe)
! Cannot find Chrome. Try setting CHROME_EXECUTABLE to a Chrome executable.
[√] Android Studio (version 2020.3)
[√] VS Code (version 1.63.2)
[√] Connected device (2 available)
! Doctor found issues in 1 category.
Steps to Reproduce
using this code
import 'dart:math';
import 'package:android_alarm_manager_plus/android_alarm_manager_plus.dart';
import 'package:firebase_database/firebase_database.dart';
import 'package:flutter/material.dart';
import 'package:firebase_core/firebase_core.dart';
Future<void> runBackgroundTask() async {
await Firebase.initializeApp();
final fb = FirebaseDatabase.instance.reference();
fb.child("update").set(Random().nextInt(1000000).toString());
}
Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
await AndroidAlarmManager.initialize();
await AndroidAlarmManager.periodic(
const Duration(seconds: 5), 0, runBackgroundTask,
rescheduleOnReboot: true, allowWhileIdle: true, exact: true);
runApp(
MaterialApp(
home:Text("heyy")));
}
1.the alarm works fine, i get random numbers in my firebase roughly every 10 seconds
2. i press the button on my android that shows all the running apps, i swipe my app to kill it
3. i dont get random numbers in my firebase anymore, (i also tried to send local notifications instead of connecting to my database, same problem
Logs
[ +49 ms] executing: [C:\Users\Hedi\AppData\Local\flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H
[ +180 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
[ +1 ms] cf4400006550b70f28e4b4af815151d1e74846c6
[ ] executing: [C:\Users\Hedi\AppData\Local\flutter/] git tag --points-at
cf4400006550b70f28e4b4af815151d1e74846c6
[ +27 ms] Exit code 0 from: git tag --points-at cf4400006550b70f28e4b4af815151d1e74846c6
[ ] 2.8.0
[ +5 ms] executing: [C:\Users\Hedi\AppData\Local\flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +21 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/stable
[ ] executing: [C:\Users\Hedi\AppData\Local\flutter/] git ls-remote --get-url origin
[ +18 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ +74 ms] executing: [C:\Users\Hedi\AppData\Local\flutter/] git rev-parse --abbrev-ref HEAD
[ +20 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] stable
[ +49 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[ +2 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'WindowsUwpEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[ +42 ms] executing: C:\Users\Hedi\AppData\Local\Android\sdk\platform-tools\adb.exe devices -l
[ +31 ms] List of devices attached
192.168.0.181:5555 device product:sweet_global model:M2101K6G device:sweet transport_id:1
[ +6 ms] C:\Users\Hedi\AppData\Local\Android\sdk\platform-tools\adb.exe -s 192.168.0.181:5555 shell getprop
[ +186 ms] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[ +2 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'WindowsUwpEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[ +64 ms] Skipping pub get: version match.
[ +10 ms] Found plugin android_alarm_manager_plus at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\android_alarm_manager_plus-2.0.3\
[ +8 ms] Found plugin cloud_firestore at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\cloud_firestore-2.2.2\
[ +2 ms] Found plugin cloud_firestore_web at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\cloud_firestore_web-2.1.2\
[ +5 ms] Found plugin firebase_analytics at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\firebase_analytics-9.0.4\
[ +2 ms] Found plugin firebase_analytics_web at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\firebase_analytics_web-0.4.0+4\
[ +1 ms] Found plugin firebase_core at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\firebase_core-1.10.6\
[ +2 ms] Found plugin firebase_core_web at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\firebase_core_web-1.5.3\
[ +1 ms] Found plugin firebase_database at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\firebase_database-8.0.2\
[ +1 ms] Found plugin firebase_database_web at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\firebase_database_web-0.1.0+2\
[ +2 ms] Found plugin flutter_local_notifications at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_local_notifications-9.2.0\
[ +3 ms] Found plugin google_mobile_ads at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\google_mobile_ads-0.13.6\
[ +5 ms] Found plugin path_provider at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider-2.0.2\
[ +1 ms] Found plugin path_provider_linux at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider_linux-2.0.0\
[ +1 ms] Found plugin path_provider_macos at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider_macos-2.0.0\
[ +1 ms] Found plugin path_provider_windows at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider_windows-2.0.1\
[ +4 ms] Found plugin shared_preferences at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\shared_preferences-2.0.9\
[ +1 ms] Found plugin shared_preferences_android at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\shared_preferences_android-2.0.9\
[ +1 ms] Found plugin shared_preferences_ios at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\shared_preferences_ios-2.0.8\
[ +1 ms] Found plugin shared_preferences_linux at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\shared_preferences_linux-2.0.3\
[ +2 ms] Found plugin shared_preferences_macos at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\shared_preferences_macos-2.0.2\
[ +1 ms] Found plugin shared_preferences_web at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\shared_preferences_web-2.0.2\
[ +1 ms] Found plugin shared_preferences_windows at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\shared_preferences_windows-2.0.3\
[ +2 ms] Found plugin sqflite at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\sqflite-2.0.0+3\
[ +107 ms] Found plugin android_alarm_manager_plus at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\android_alarm_manager_plus-2.0.3\
[ +4 ms] Found plugin cloud_firestore at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\cloud_firestore-2.2.2\
[ +1 ms] Found plugin cloud_firestore_web at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\cloud_firestore_web-2.1.2\
[ +4 ms] Found plugin firebase_analytics at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\firebase_analytics-9.0.4\
[ +1 ms] Found plugin firebase_analytics_web at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\firebase_analytics_web-0.4.0+4\
[ +1 ms] Found plugin firebase_core at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\firebase_core-1.10.6\
[ +1 ms] Found plugin firebase_core_web at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\firebase_core_web-1.5.3\
[ +1 ms] Found plugin firebase_database at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\firebase_database-8.0.2\
[ +1 ms] Found plugin firebase_database_web at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\firebase_database_web-0.1.0+2\
[ +1 ms] Found plugin flutter_local_notifications at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_local_notifications-9.2.0\
[ +2 ms] Found plugin google_mobile_ads at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\google_mobile_ads-0.13.6\
[ +3 ms] Found plugin path_provider at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider-2.0.2\
[ ] Found plugin path_provider_linux at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider_linux-2.0.0\
[ ] Found plugin path_provider_macos at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider_macos-2.0.0\
[ +1 ms] Found plugin path_provider_windows at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider_windows-2.0.1\
[ +3 ms] Found plugin shared_preferences at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\shared_preferences-2.0.9\
[ +1 ms] Found plugin shared_preferences_android at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\shared_preferences_android-2.0.9\
[ +1 ms] Found plugin shared_preferences_ios at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\shared_preferences_ios-2.0.8\
[ +1 ms] Found plugin shared_preferences_linux at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\shared_preferences_linux-2.0.3\
[ +1 ms] Found plugin shared_preferences_macos at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\shared_preferences_macos-2.0.2\
[ +1 ms] Found plugin shared_preferences_web at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\shared_preferences_web-2.0.2\
[ +1 ms] Found plugin shared_preferences_windows at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\shared_preferences_windows-2.0.3\
[ +1 ms] Found plugin sqflite at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\sqflite-2.0.0+3\
[ +17 ms] Generating F:\kurd currency\kurd
currency\kurdcurrency\android\app\src\main\java\io\flutter\plugins\GeneratedPluginRegistrant.java
[ +48 ms] ro.hardware = qcom
[ +31 ms] Initializing file store
[ +9 ms] Skipping target: gen_localizations
[ +3 ms] gen_dart_plugin_registrant: Starting due to {InvalidatedReasonKind.inputChanged: The following inputs have
updated contents: F:\kurd currency\kurd currency\kurdcurrency\.dart_tool\package_config_subset,F:\kurd currency\kurd
currency\kurdcurrency\.dart_tool\flutter_build\generated_main.dart}
[ +7 ms] Found plugin android_alarm_manager_plus at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\android_alarm_manager_plus-2.0.3\
[ +2 ms] Found plugin cloud_firestore at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\cloud_firestore-2.2.2\
[ +1 ms] Found plugin cloud_firestore_web at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\cloud_firestore_web-2.1.2\
[ +2 ms] Found plugin firebase_analytics at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\firebase_analytics-9.0.4\
[ +1 ms] Found plugin firebase_analytics_web at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\firebase_analytics_web-0.4.0+4\
[ ] Found plugin firebase_core at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\firebase_core-1.10.6\
[ +1 ms] Found plugin firebase_core_web at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\firebase_core_web-1.5.3\
[ +1 ms] Found plugin firebase_database at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\firebase_database-8.0.2\
[ +1 ms] Found plugin firebase_database_web at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\firebase_database_web-0.1.0+2\
[ +1 ms] Found plugin flutter_local_notifications at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_local_notifications-9.2.0\
[ +1 ms] Found plugin google_mobile_ads at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\google_mobile_ads-0.13.6\
[ +2 ms] Found plugin path_provider at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider-2.0.2\
[ ] Found plugin path_provider_linux at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider_linux-2.0.0\
[ +1 ms] Found plugin path_provider_macos at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider_macos-2.0.0\
[ +1 ms] Found plugin path_provider_windows at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider_windows-2.0.1\
[ +2 ms] Found plugin shared_preferences at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\shared_preferences-2.0.9\
[ ] Found plugin shared_preferences_android at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\shared_preferences_android-2.0.9\
[ +2 ms] Found plugin shared_preferences_ios at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\shared_preferences_ios-2.0.8\
[ ] Found plugin shared_preferences_linux at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\shared_preferences_linux-2.0.3\
[ +1 ms] Found plugin shared_preferences_macos at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\shared_preferences_macos-2.0.2\
[ +1 ms] Found plugin shared_preferences_web at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\shared_preferences_web-2.0.2\
[ ] Found plugin shared_preferences_windows at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\shared_preferences_windows-2.0.3\
[ +1 ms] Found plugin sqflite at
C:\Users\Hedi\AppData\Local\flutter\.pub-cache\hosted\pub.dartlang.org\sqflite-2.0.0+3\
[ +9 ms] gen_dart_plugin_registrant: Complete
[ +1 ms] Skipping target: _composite
[ +1 ms] complete
[ +4 ms] Launching lib\main.dart on M2101K6G in debug mode...
[ +4 ms] C:\Users\Hedi\AppData\Local\flutter\bin\cache\dart-sdk\bin\dart.exe --disable-dart-dev
C:\Users\Hedi\AppData\Local\flutter\bin\cache\artifacts\engine\windows-x64\frontend_server.dart.snapshot --sdk-root
C:\Users\Hedi\AppData\Local\flutter\bin\cache\artifacts\engine\common\flutter_patched_sdk/ --incremental
--target=flutter --debugger-module-names --experimental-emit-debug-metadata -DFLUTTER_WEB_AUTO_DETECT=true --output-dill
C:\Users\Hedi\AppData\Local\Temp\flutter_tools.8ef3f48c\flutter_tool.b9430fa8\app.dill --packages F:\kurd currency\kurd
currency\kurdcurrency\.dart_tool\package_config.json -Ddart.vm.profile=false -Ddart.vm.product=false --enable-asserts
--track-widget-creation --filesystem-scheme org-dartlang-root --initialize-from-dill
build\c075001b96339384a97db4862b8ab8db.cache.dill.track.dill --enable-experiment=alternative-invalidation-strategy
[ +6 ms] executing: C:\Users\Hedi\AppData\Local\Android\sdk\build-tools\32.0.0\aapt dump xmltree F:\kurd currency\kurd
currency\kurdcurrency\build\app\outputs\flutter-apk\app.apk AndroidManifest.xml
[ +8 ms] Exit code 0 from: C:\Users\Hedi\AppData\Local\Android\sdk\build-tools\32.0.0\aapt dump xmltree F:\kurd
currency\kurd currency\kurdcurrency\build\app\outputs\flutter-apk\app.apk AndroidManifest.xml
[ +1 ms] N: android=http://schemas.android.com/apk/res/android
E: manifest (line=2)
A: android:versionCode(0x0101021b)=(type 0x10)0x1
A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0")
A: android:compileSdkVersion(0x01010572)=(type 0x10)0x1f
A: android:compileSdkVersionCodename(0x01010573)="12" (Raw: "12")
A: package="com.hedihadi.dinar" (Raw: "com.hedihadi.dinar")
A: platformBuildVersionCode=(type 0x10)0x1f
A: platformBuildVersionName=(type 0x10)0xc
E: uses-sdk (line=7)
A: android:minSdkVersion(0x0101020c)=(type 0x10)0x13
A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1f
E: uses-permission (line=14)
A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
E: uses-permission (line=15)
A: android:name(0x01010003)="android.permission.RECEIVE_BOOT_COMPLETED" (Raw:
"android.permission.RECEIVE_BOOT_COMPLETED")
E: uses-permission (line=16)
A: android:name(0x01010003)="android.permission.WAKE_LOCK" (Raw: "android.permission.WAKE_LOCK")
E: uses-permission (line=18)
A: android:name(0x01010003)="android.permission.SCHEDULE_EXACT_ALARM" (Raw:
"android.permission.SCHEDULE_EXACT_ALARM")
E: uses-permission (line=19)
A: android:name(0x01010003)="android.permission.ACCESS_NETWORK_STATE" (Raw:
"android.permission.ACCESS_NETWORK_STATE")
E: uses-permission (line=20)
A: android:name(0x01010003)="android.permission.VIBRATE" (Raw: "android.permission.VIBRATE")
E: uses-permission (line=21)
A: android:name(0x01010003)="android.permission.USE_FULL_SCREEN_INTENT" (Raw:
"android.permission.USE_FULL_SCREEN_INTENT")
E: uses-permission (line=22)
A: android:name(0x01010003)="com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE"
(Raw: "com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE")
E: queries (line=23)
E: intent (line=26)
E: action (line=27)
A: android:name(0x01010003)="android.intent.action.VIEW" (Raw: "android.intent.action.VIEW")
E: category (line=29)
A: android:name(0x01010003)="android.intent.category.BROWSABLE" (Raw:
"android.intent.category.BROWSABLE")
E: data (line=31)
A: android:scheme(0x01010027)="https" (Raw: "https")
E: intent (line=35)
E: action (line=36)
A: android:name(0x01010003)="android.support.customtabs.action.CustomTabsService" (Raw:
"android.support.customtabs.action.CustomTabsService")
E: application (line=41)
A: android:label(0x01010001)="Dinar - دینار" (Raw: "Dinar - دینار")
A: android:icon(0x01010002)=@0x7f0c0000
A: android:name(0x01010003)="androidx.multidex.MultiDexApplication" (Raw:
"androidx.multidex.MultiDexApplication")
A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
A: android:appComponentFactory(0x0101057a)="androidx.core.app.CoreComponentFactory" (Raw:
"androidx.core.app.CoreComponentFactory")
E: service (line=47)
A: android:name(0x01010003)="dev.fluttercommunity.plus.androidalarmmanager.AlarmService" (Raw:
"dev.fluttercommunity.plus.androidalarmmanager.AlarmService")
A: android:permission(0x01010006)="android.permission.BIND_JOB_SERVICE" (Raw:
"android.permission.BIND_JOB_SERVICE")
A: android:exported(0x01010010)=(type 0x12)0x0
E: receiver (line=52)
A: android:name(0x01010003)="dev.fluttercommunity.plus.androidalarmmanager.AlarmBroadcastReceiver"
(Raw: "dev.fluttercommunity.plus.androidalarmmanager.AlarmBroadcastReceiver")
A: android:exported(0x01010010)=(type 0x12)0x0
E: receiver (line=55)
A: android:name(0x01010003)="dev.fluttercommunity.plus.androidalarmmanager.RebootBroadcastReceiver"
(Raw: "dev.fluttercommunity.plus.androidalarmmanager.RebootBroadcastReceiver")
A: android:enabled(0x0101000e)=(type 0x12)0x0
A: android:exported(0x01010010)=(type 0x12)0x0
E: intent-filter (line=59)
E: action (line=60)
A: android:name(0x01010003)="android.intent.action.BOOT_COMPLETED" (Raw:
"android.intent.action.BOOT_COMPLETED")
E: activity (line=64)
A: android:theme(0x01010000)=@0x7f0e00a1
A: android:name(0x01010003)="com.hedihadi.dinar.MainActivity" (Raw:
"com.hedihadi.dinar.MainActivity")
A: android:launchMode(0x0101001d)=(type 0x10)0x1
A: android:configChanges(0x0101001f)=(type 0x11)0x40003fb4
A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff
E: meta-data (line=78)
A: android:name(0x01010003)="com.google.android.gms.ads.APPLICATION_ID" (Raw:
"com.google.android.gms.ads.APPLICATION_ID")
A: android:value(0x01010024)="ca-app-pub-5924426514255017~3558048622" (Raw:
"ca-app-pub-5924426514255017~3558048622")
E: meta-data (line=81)
A: android:name(0x01010003)="io.flutter.embedding.android.NormalTheme" (Raw:
"io.flutter.embedding.android.NormalTheme")
A: android:resource(0x01010025)=@0x7f0e00a2
E: meta-data (line=91)
A: android:name(0x01010003)="io.flutter.embedding.android.SplashScreenDrawable" (Raw:
"io.flutter.embedding.android.SplashScreenDrawable")
A: android:resource(0x01010025)=@0x7f07006d
E: intent-filter (line=95)
E: action (line=96)
A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
E: category (line=98)
A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw:
"android.intent.category.LAUNCHER")
E: meta-data (line=105)
A: android:name(0x01010003)="flutterEmbedding" (Raw: "flutterEmbedding")
A: android:value(0x01010024)=(type 0x10)0x2
E: meta-data (line=108)
A: android:name(0x01010003)="com.google.android.gms.ads.APPLICATION_ID" (Raw:
"com.google.android.gms.ads.APPLICATION_ID")
A: android:value(0x01010024)="ca-app-pub-5924426514255017~9984189005" (Raw:
"ca-app-pub-5924426514255017~9984189005")
E: service (line=112)
A: android:name(0x01010003)="com.google.firebase.components.ComponentDiscoveryService" (Raw:
"com.google.firebase.components.ComponentDiscoveryService")
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:directBootAware(0x01010505)=(type 0x12)0xffffffff
E: meta-data (line=116)
A:
android:name(0x01010003)="com.google.firebase.components:io.flutter.plugins.firebase.analytics.Flut
terFirebaseAppRegistrar" (Raw:
"com.google.firebase.components:io.flutter.plugins.firebase.analytics.FlutterFirebaseAppRegistrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
"com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=119)
A:
android:name(0x01010003)="com.google.firebase.components:io.flutter.plugins.firebase.database.Flutt
erFirebaseAppRegistrar" (Raw:
"com.google.firebase.components:io.flutter.plugins.firebase.database.FlutterFirebaseAppRegistrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
"com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=122)
A:
android:name(0x01010003)="com.google.firebase.components:io.flutter.plugins.firebase.firestore.Flut
terFirebaseFirestoreRegistrar" (Raw:
"com.google.firebase.components:io.flutter.plugins.firebase.firestore.FlutterFirebaseFirestoreRegis
trar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
"com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=125)
A:
android:name(0x01010003)="com.google.firebase.components:io.flutter.plugins.firebase.core.FlutterFi
rebaseCoreRegistrar" (Raw:
"com.google.firebase.components:io.flutter.plugins.firebase.core.FlutterFirebaseCoreRegistrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
"com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=128)
A:
android:name(0x01010003)="com.google.firebase.components:com.google.firebase.firestore.FirestoreReg
istrar" (Raw: "com.google.firebase.components:com.google.firebase.firestore.FirestoreRegistrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
"com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=131)
A:
android:name(0x01010003)="com.google.firebase.components:com.google.firebase.analytics.connector.in
ternal.AnalyticsConnectorRegistrar" (Raw:
"com.google.firebase.components:com.google.firebase.analytics.connector.internal.AnalyticsConnector
Registrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
"com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=134)
A:
android:name(0x01010003)="com.google.firebase.components:com.google.firebase.database.DatabaseRegis
trar" (Raw: "com.google.firebase.components:com.google.firebase.database.DatabaseRegistrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
"com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=137)
A:
android:name(0x01010003)="com.google.firebase.components:com.google.firebase.installations.Firebase
InstallationsRegistrar" (Raw:
"com.google.firebase.components:com.google.firebase.installations.FirebaseInstallationsRegistrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
"com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=142)
A: android:name(0x01010003)="io.flutter.embedded_views_preview" (Raw:
"io.flutter.embedded_views_preview")
A: android:value(0x01010024)=(type 0x12)0xffffffff
E: receiver (line=146)
A: android:name(0x01010003)="com.dexterous.flutterlocalnotifications.ScheduledNotificationReceiver"
(Raw: "com.dexterous.flutterlocalnotifications.ScheduledNotificationReceiver")
A: android:exported(0x01010010)=(type 0x12)0x0
E: receiver (line=149)
A:
android:name(0x01010003)="com.dexterous.flutterlocalnotifications.ScheduledNotificationBootReceiver"
(Raw: "com.dexterous.flutterlocalnotifications.ScheduledNotificationBootReceiver")
A: android:exported(0x01010010)=(type 0x12)0x0
E: intent-filter (line=152)
E: action (line=153)
A: android:name(0x01010003)="android.intent.action.BOOT_COMPLETED" (Raw:
"android.intent.action.BOOT_COMPLETED")
E: action (line=154)
A: android:name(0x01010003)="android.intent.action.MY_PACKAGE_REPLACED" (Raw:
"android.intent.action.MY_PACKAGE_REPLACED")
E: action (line=155)
A: android:name(0x01010003)="android.intent.action.QUICKBOOT_POWERON" (Raw:
"android.intent.action.QUICKBOOT_POWERON")
E: action (line=156)
A: android:name(0x01010003)="com.htc.intent.action.QUICKBOOT_POWERON" (Raw:
"com.htc.intent.action.QUICKBOOT_POWERON")
E: provider (line=160)
A: android:name(0x01010003)="com.google.firebase.provider.FirebaseInitProvider" (Raw:
"com.google.firebase.provider.FirebaseInitProvider")
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:authorities(0x01010018)="com.hedihadi.dinar.firebaseinitprovider" (Raw:
"com.hedihadi.dinar.firebaseinitprovider")
A: android:initOrder(0x0101001a)=(type 0x10)0x64
A: android:directBootAware(0x01010505)=(type 0x12)0xffffffff
E: receiver (line=167)
A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementReceiver" (Raw:
"com.google.android.gms.measurement.AppMeasurementReceiver")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0x0
E: service (line=173)
A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementService" (Raw:
"com.google.android.gms.measurement.AppMeasurementService")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0x0
E: service (line=177)
A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementJobService" (Raw:
"com.google.android.gms.measurement.AppMeasurementJobService")
A: android:permission(0x01010006)="android.permission.BIND_JOB_SERVICE" (Raw:
"android.permission.BIND_JOB_SERVICE")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0x0
E: activity (line=183)
A: android:theme(0x01010000)=@0x01030010
A: android:name(0x01010003)="com.google.android.gms.common.api.GoogleApiActivity" (Raw:
"com.google.android.gms.common.api.GoogleApiActivity")
A: android:exported(0x01010010)=(type 0x12)0x0
E: activity (line=187)
A: android:theme(0x01010000)=@0x0103000f
A: android:name(0x01010003)="com.google.android.gms.ads.AdActivity" (Raw:
"com.google.android.gms.ads.AdActivity")
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:configChanges(0x0101001f)=(type 0x11)0xfb0
E: provider (line=193)
A: android:name(0x01010003)="com.google.android.gms.ads.MobileAdsInitProvider" (Raw:
"com.google.android.gms.ads.MobileAdsInitProvider")
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:authorities(0x01010018)="com.hedihadi.dinar.mobileadsinitprovider" (Raw:
"com.hedihadi.dinar.mobileadsinitprovider")
A: android:initOrder(0x0101001a)=(type 0x10)0x64
E: service (line=199)
A: android:name(0x01010003)="com.google.android.gms.ads.AdService" (Raw:
"com.google.android.gms.ads.AdService")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0x0
E: meta-data (line=204)
A: android:name(0x01010003)="com.google.android.gms.version" (Raw: "com.google.android.gms.version")
A: android:value(0x01010024)=@0x7f090004
E: provider (line=208)
A: android:name(0x01010003)="androidx.work.impl.WorkManagerInitializer" (Raw:
"androidx.work.impl.WorkManagerInitializer")
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:multiprocess(0x01010013)=(type 0x12)0xffffffff
A: android:authorities(0x01010018)="com.hedihadi.dinar.workmanager-init" (Raw:
"com.hedihadi.dinar.workmanager-init")
A: android:directBootAware(0x01010505)=(type 0x12)0x0
E: service (line=215)
A: android:name(0x01010003)="androidx.work.impl.background.systemalarm.SystemAlarmService" (Raw:
"androidx.work.impl.background.systemalarm.SystemAlarmService")
A: android:enabled(0x0101000e)=@0x7f040002
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:directBootAware(0x01010505)=(type 0x12)0x0
E: service (line=220)
A: android:name(0x01010003)="androidx.work.impl.background.systemjob.SystemJobService" (Raw:
"androidx.work.impl.background.systemjob.SystemJobService")
A: android:permission(0x01010006)="android.permission.BIND_JOB_SERVICE" (Raw:
"android.permission.BIND_JOB_SERVICE")
A: android:enabled(0x0101000e)=@0x7f040003
A: android:exported(0x01010010)=(type 0x12)0xffffffff
A: android:directBootAware(0x01010505)=(type 0x12)0x0
E: receiver (line=227)
A: android:name(0x01010003)="androidx.work.impl.utils.ForceStopRunnable$BroadcastReceiver" (Raw:
"androidx.work.impl.utils.ForceStopRunnable$BroadcastReceiver")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:directBootAware(0x01010505)=(type 0x12)0x0
E: receiver (line=232)
A:
android:name(0x01010003)="androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryChargingPr
oxy" (Raw: "androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryChargingProxy")
A: android:enabled(0x0101000e)=(type 0x12)0x0
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:directBootAware(0x01010505)=(type 0x12)0x0
E: intent-filter (line=237)
E: action (line=238)
A: android:name(0x01010003)="android.intent.action.ACTION_POWER_CONNECTED" (Raw:
"android.intent.action.ACTION_POWER_CONNECTED")
E: action (line=239)
A: android:name(0x01010003)="android.intent.action.ACTION_POWER_DISCONNECTED" (Raw:
"android.intent.action.ACTION_POWER_DISCONNECTED")
E: receiver (line=242)
A:
android:name(0x01010003)="androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryNotLowProx
y" (Raw: "androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryNotLowProxy")
A: android:enabled(0x0101000e)=(type 0x12)0x0
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:directBootAware(0x01010505)=(type 0x12)0x0
E: intent-filter (line=247)
E: action (line=248)
A: android:name(0x01010003)="android.intent.action.BATTERY_OKAY" (Raw:
"android.intent.action.BATTERY_OKAY")
E: action (line=249)
A: android:name(0x01010003)="android.intent.action.BATTERY_LOW" (Raw:
"android.intent.action.BATTERY_LOW")
E: receiver (line=252)
A:
android:name(0x01010003)="androidx.work.impl.background.systemalarm.ConstraintProxy$StorageNotLowProx
y" (Raw: "androidx.work.impl.background.systemalarm.ConstraintProxy$StorageNotLowProxy")
A: android:enabled(0x0101000e)=(type 0x12)0x0
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:directBootAware(0x01010505)=(type 0x12)0x0
E: intent-filter (line=257)
E: action (line=258)
A: android:name(0x01010003)="android.intent.action.DEVICE_STORAGE_LOW" (Raw:
"android.intent.action.DEVICE_STORAGE_LOW")
E: action (line=259)
A: android:name(0x01010003)="android.intent.action.DEVICE_STORAGE_OK" (Raw:
"android.intent.action.DEVICE_STORAGE_OK")
E: receiver (line=262)
A:
android:name(0x01010003)="androidx.work.impl.background.systemalarm.ConstraintProxy$NetworkStateProxy
" (Raw: "androidx.work.impl.background.systemalarm.ConstraintProxy$NetworkStateProxy")
A: android:enabled(0x0101000e)=(type 0x12)0x0
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:directBootAware(0x01010505)=(type 0x12)0x0
E: intent-filter (line=267)
E: action (line=268)
A: android:name(0x01010003)="android.net.conn.CONNECTIVITY_CHANGE" (Raw:
"android.net.conn.CONNECTIVITY_CHANGE")
E: receiver (line=271)
A: android:name(0x01010003)="androidx.work.impl.background.systemalarm.RescheduleReceiver" (Raw:
"androidx.work.impl.background.systemalarm.RescheduleReceiver")
A: android:enabled(0x0101000e)=(type 0x12)0x0
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:directBootAware(0x01010505)=(type 0x12)0x0
E: intent-filter (line=276)
E: action (line=277)
A: android:name(0x01010003)="android.intent.action.BOOT_COMPLETED" (Raw:
"android.intent.action.BOOT_COMPLETED")
E: action (line=278)
A: android:name(0x01010003)="android.intent.action.TIME_SET" (Raw:
"android.intent.action.TIME_SET")
E: action (line=279)
A: android:name(0x01010003)="android.intent.action.TIMEZONE_CHANGED" (Raw:
"android.intent.action.TIMEZONE_CHANGED")
E: receiver (line=282)
A: android:name(0x01010003)="androidx.work.impl.background.systemalarm.ConstraintProxyUpdateReceiver"
(Raw: "androidx.work.impl.background.systemalarm.ConstraintProxyUpdateReceiver")
A: android:enabled(0x0101000e)=@0x7f040002
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:directBootAware(0x01010505)=(type 0x12)0x0
E: intent-filter (line=287)
E: action (line=288)
A: android:name(0x01010003)="androidx.work.impl.background.systemalarm.UpdateProxies" (Raw:
"androidx.work.impl.background.systemalarm.UpdateProxies")
E: service (line=292)
A: android:name(0x01010003)="androidx.room.MultiInstanceInvalidationService" (Raw:
"androidx.room.MultiInstanceInvalidationService")
A: android:exported(0x01010010)=(type 0x12)0x0
[ +27 ms] executing: C:\Users\Hedi\AppData\Local\Android\sdk\platform-tools\adb.exe -s 192.168.0.181:5555 shell -x
logcat -v time -t 1
[ +11 ms] <- compile
file:///F:/kurd%20currency/kurd%20currency/kurdcurrency/.dart_tool/flutter_build/generated_main.dart
[ +290 ms] --------- beginning of main
01-06 17:14:36.340 D/MiuiNetworkPolicy( 2059): updateLimit
mLimitEnabled=false,enabled=true,mNetworkPriorityMode=0
[ +8 ms] executing: C:\Users\Hedi\AppData\Local\Android\sdk\platform-tools\adb.exe version
[ +13 ms] Android Debug Bridge version 1.0.41
Version 31.0.3-7562133
Installed as C:\Users\Hedi\AppData\Local\Android\sdk\platform-tools\adb.exe
[ +1 ms] executing: C:\Users\Hedi\AppData\Local\Android\sdk\platform-tools\adb.exe start-server
[ +14 ms] Building APK
[ +12 ms] Running Gradle task 'assembleDebug'...
[ +4 ms] Using gradle from F:\kurd currency\kurd currency\kurdcurrency\android\gradlew.bat.
[ +12 ms] executing: C:\Program Files\Android\Android Studio\jre\bin\java -version
[ +124 ms] Exit code 0 from: C:\Program Files\Android\Android Studio\jre\bin\java -version
[ +1 ms] openjdk version "11.0.10" 2021-01-19
OpenJDK Runtime Environment (build 11.0.10+0-b96-7249189)
OpenJDK 64-Bit Server VM (build 11.0.10+0-b96-7249189, mixed mode)
[ +1 ms] executing: [F:\kurd currency\kurd currency\kurdcurrency\android/] F:\kurd currency\kurd
currency\kurdcurrency\android\gradlew.bat -Pverbose=true -Ptarget-platform=android-arm64 -Ptarget=F:\kurd currency\kurd
currency\kurdcurrency\lib\main.dart -Pbase-application-name=android.app.Application
-Pdart-defines=RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ== -Pdart-obfuscation=false -Ptrack-widget-creation=true
-Ptree-shake-icons=false -Pfilesystem-scheme=org-dartlang-root assembleDebug
[+1328 ms] Warning: Mapping new ns http://schemas.android.com/repository/android/common/02 to old ns
http://schemas.android.com/repository/android/common/01
[ +2 ms] Warning: Mapping new ns http://schemas.android.com/repository/android/generic/02 to old ns
http://schemas.android.com/repository/android/generic/01
[ ] Warning: Mapping new ns http://schemas.android.com/sdk/android/repo/addon2/02 to old ns
http://schemas.android.com/sdk/android/repo/addon2/01
[ ] Warning: Mapping new ns http://schemas.android.com/sdk/android/repo/repository2/02 to old ns
http://schemas.android.com/sdk/android/repo/repository2/01
[ ] Warning: Mapping new ns http://schemas.android.com/sdk/android/repo/sys-img2/02 to old ns
http://schemas.android.com/sdk/android/repo/sys-img2/01
[ +87 ms] > Task :android_alarm_manager_plus:preBuild UP-TO-DATE
[ +2 ms] > Task :android_alarm_manager_plus:preDebugBuild UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:compileDebugAidl NO-SOURCE
[ +1 ms] > Task :android_alarm_manager_plus:mergeDebugJniLibFolders UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:mergeDebugNativeLibs NO-SOURCE
[ ] > Task :android_alarm_manager_plus:stripDebugDebugSymbols NO-SOURCE
[ ] > Task :android_alarm_manager_plus:copyDebugJniLibsProjectAndLocalJars UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:compileDebugRenderscript NO-SOURCE
[ ] > Task :android_alarm_manager_plus:generateDebugBuildConfig UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:generateDebugResValues UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:generateDebugResources UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:packageDebugResources UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:parseDebugLocalResources UP-TO-DATE
[ +2 ms] > Task :android_alarm_manager_plus:processDebugManifest UP-TO-DATE
[ +94 ms] > Task :android_alarm_manager_plus:generateDebugRFile UP-TO-DATE
[ +1 ms] > Task :android_alarm_manager_plus:javaPreCompileDebug UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:compileDebugJavaWithJavac UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:extractDebugAnnotations UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:mergeDebugGeneratedProguardFiles UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:mergeDebugConsumerProguardFiles UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:mergeDebugShaders UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:compileDebugShaders NO-SOURCE
[ ] > Task :android_alarm_manager_plus:generateDebugAssets UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:packageDebugAssets UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:packageDebugRenderscript NO-SOURCE
[ ] > Task :android_alarm_manager_plus:prepareLintJarForPublish UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:processDebugJavaRes NO-SOURCE
[ ] > Task :android_alarm_manager_plus:mergeDebugJavaResource UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:syncDebugLibJars UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:writeDebugAarMetadata UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:bundleDebugAar UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:compileDebugSources UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:assembleDebug UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:bundleLibCompileToJarDebug UP-TO-DATE
[+1984 ms] > Task :app:compileFlutterBuildDebug
[ +1 ms] [ +46 ms] executing: [C:\Users\Hedi\AppData\Local\flutter/] git -c log.showSignature=false log -n 1
--pretty=format:%H
[ ] [ +181 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
[ ] [ ] cf4400006550b70f28e4b4af815151d1e74846c6
[ ] [ ] executing: [C:\Users\Hedi\AppData\Local\flutter/] git tag --points-at
cf4400006550b70f28e4b4af815151d1e74846c6
[ ] [ +26 ms] Exit code 0 from: git tag --points-at cf4400006550b70f28e4b4af815151d1e74846c6
[ ] [ ] 2.8.0
[ ] [ +5 ms] executing: [C:\Users\Hedi\AppData\Local\flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ ] [ +20 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] [ ] origin/stable
[ ] [ ] executing: [C:\Users\Hedi\AppData\Local\flutter/] git ls-remote --get-url origin
[ ] [ +18 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] [ ] https://github.com/flutter/flutter.git
[ ] [ +39 ms] executing: [C:\Users\Hedi\AppData\Local\flutter/] git rev-parse --abbrev-ref HEAD
[ ] [ +18 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] [ ] stable
[ ] [ +41 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[ ] [ +2 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'WindowsUwpEngineArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[ ] [ +75 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'GradleWrapper' is not required, skipping update.
[ ] [ +2 ms] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[ +2 ms] [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[ ] [ ] Artifact Instance of 'FlutterSdk' is not required, skipping update.
[ ] [ ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'WindowsUwpEngineArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'PubDependencies' is not required, skipping update.
[ ] [ +27 ms] Initializing file store
[ ] [ +12 ms] Done initializing file store
[ ] [ +33 ms] Skipping target: gen_localizations
[ ] [ +12 ms] Skipping target: gen_dart_plugin_registrant
[ ] [ +423 ms] Skipping target: kernel_snapshot
[ ] [ +6 ms] invalidated build due to missing files: F:\kurd currency\kurd
currency\kurdcurrency\DOES_NOT_EXIST_RERUN_FOR_WILDCARD856484815
[ ] [ +243 ms] debug_android_application: Starting due to {InvalidatedReasonKind.inputMissing: The following
inputs were missing: F:\kurd currency\kurd currency\kurdcurrency\DOES_NOT_EXIST_RERUN_FOR_WILDCARD856484815}
[ ] [ +139 ms] Manifest contained wildcard assets. Inserting missing file into build graph to force rerun. for
more information see #56466.
[ ] [ +69 ms] debug_android_application: Complete
[ +173 ms] [ +257 ms] Persisting file store
[ +94 ms] [ +8 ms] Done persisting file store
[ +1 ms] [ +4 ms] build succeeded.
[ ] [ +11 ms] "flutter assemble" took 1,345ms.
[ +199 ms] [ +231 ms] ensureAnalyticsSent: 228ms
[ +1 ms] [ +1 ms] Running shutdown hooks
[ ] [ ] Shutdown hooks complete
[ ] [ ] exiting with code 0
[ ] Parameter format not correct -
[ +92 ms] > Task :app:packLibsflutterBuildDebug UP-TO-DATE
[ +1 ms] > Task :app:preBuild UP-TO-DATE
[ ] > Task :app:preDebugBuild UP-TO-DATE
[ ] > Task :cloud_firestore:preBuild UP-TO-DATE
[ ] > Task :cloud_firestore:preDebugBuild UP-TO-DATE
[ ] > Task :firebase_core:preBuild UP-TO-DATE
[ ] > Task :firebase_core:preDebugBuild UP-TO-DATE
[ ] > Task :firebase_core:compileDebugAidl NO-SOURCE
[ ] > Task :cloud_firestore:compileDebugAidl NO-SOURCE
[ ] > Task :firebase_analytics:preBuild UP-TO-DATE
[ ] > Task :firebase_analytics:preDebugBuild UP-TO-DATE
[ ] > Task :firebase_analytics:compileDebugAidl NO-SOURCE
[ ] > Task :firebase_database:preBuild UP-TO-DATE
[ ] > Task :firebase_database:preDebugBuild UP-TO-DATE
[ ] > Task :firebase_database:compileDebugAidl NO-SOURCE
[ ] > Task :flutter_local_notifications:preBuild UP-TO-DATE
[ ] > Task :flutter_local_notifications:preDebugBuild UP-TO-DATE
[ ] > Task :flutter_local_notifications:compileDebugAidl NO-SOURCE
[ ] > Task :google_mobile_ads:preBuild UP-TO-DATE
[ ] > Task :google_mobile_ads:preDebugBuild UP-TO-DATE
[ ] > Task :google_mobile_ads:compileDebugAidl NO-SOURCE
[ ] > Task :path_provider:preBuild UP-TO-DATE
[ ] > Task :path_provider:preDebugBuild UP-TO-DATE
[ ] > Task :path_provider:compileDebugAidl NO-SOURCE
[ ] > Task :shared_preferences_android:preBuild UP-TO-DATE
[ ] > Task :shared_preferences_android:preDebugBuild UP-TO-DATE
[ ] > Task :shared_preferences_android:compileDebugAidl NO-SOURCE
[ ] > Task :sqflite:preBuild UP-TO-DATE
[ ] > Task :sqflite:preDebugBuild UP-TO-DATE
[ +2 ms] > Task :sqflite:compileDebugAidl NO-SOURCE
[ ] > Task :app:compileDebugAidl NO-SOURCE
[ ] > Task :cloud_firestore:packageDebugRenderscript NO-SOURCE
[ ] > Task :firebase_analytics:packageDebugRenderscript NO-SOURCE
[ ] > Task :firebase_core:packageDebugRenderscript NO-SOURCE
[ ] > Task :firebase_database:packageDebugRenderscript NO-SOURCE
[ ] > Task :flutter_local_notifications:packageDebugRenderscript NO-SOURCE
[ ] > Task :google_mobile_ads:packageDebugRenderscript NO-SOURCE
[ ] > Task :path_provider:packageDebugRenderscript NO-SOURCE
[ ] > Task :shared_preferences_android:packageDebugRenderscript NO-SOURCE
[ ] > Task :sqflite:packageDebugRenderscript NO-SOURCE
[ ] > Task :app:compileDebugRenderscript NO-SOURCE
[ ] > Task :app:generateDebugBuildConfig UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:compileDebugLibraryResources UP-TO-DATE
[ ] > Task :cloud_firestore:writeDebugAarMetadata UP-TO-DATE
[ ] > Task :firebase_analytics:writeDebugAarMetadata UP-TO-DATE
[ ] > Task :firebase_core:writeDebugAarMetadata UP-TO-DATE
[ ] > Task :firebase_database:writeDebugAarMetadata UP-TO-DATE
[ ] > Task :flutter_local_notifications:writeDebugAarMetadata UP-TO-DATE
[ ] > Task :google_mobile_ads:writeDebugAarMetadata UP-TO-DATE
[ ] > Task :path_provider:writeDebugAarMetadata UP-TO-DATE
[ ] > Task :shared_preferences_android:writeDebugAarMetadata UP-TO-DATE
[ ] > Task :sqflite:writeDebugAarMetadata UP-TO-DATE
[ ] > Task :app:checkDebugAarMetadata UP-TO-DATE
[ +81 ms] > Task :app:cleanMergeDebugAssets
[ +1 ms] > Task :app:mergeDebugShaders UP-TO-DATE
[ ] > Task :app:compileDebugShaders NO-SOURCE
[ ] > Task :app:generateDebugAssets UP-TO-DATE
[ ] > Task :cloud_firestore:mergeDebugShaders UP-TO-DATE
[ ] > Task :cloud_firestore:compileDebugShaders NO-SOURCE
[ ] > Task :cloud_firestore:generateDebugAssets UP-TO-DATE
[ ] > Task :cloud_firestore:packageDebugAssets UP-TO-DATE
[ ] > Task :firebase_analytics:mergeDebugShaders UP-TO-DATE
[ ] > Task :firebase_analytics:compileDebugShaders NO-SOURCE
[ ] > Task :firebase_analytics:generateDebugAssets UP-TO-DATE
[ ] > Task :firebase_analytics:packageDebugAssets UP-TO-DATE
[ ] > Task :firebase_core:mergeDebugShaders UP-TO-DATE
[ ] > Task :firebase_core:compileDebugShaders NO-SOURCE
[ ] > Task :firebase_core:generateDebugAssets UP-TO-DATE
[ ] > Task :firebase_core:packageDebugAssets UP-TO-DATE
[ ] > Task :firebase_database:mergeDebugShaders UP-TO-DATE
[ ] > Task :firebase_database:compileDebugShaders NO-SOURCE
[ ] > Task :firebase_database:generateDebugAssets UP-TO-DATE
[ ] > Task :firebase_database:packageDebugAssets UP-TO-DATE
[ ] > Task :flutter_local_notifications:mergeDebugShaders UP-TO-DATE
[ ] > Task :flutter_local_notifications:compileDebugShaders NO-SOURCE
[ ] > Task :flutter_local_notifications:generateDebugAssets UP-TO-DATE
[ ] > Task :flutter_local_notifications:packageDebugAssets UP-TO-DATE
[ ] > Task :google_mobile_ads:mergeDebugShaders UP-TO-DATE
[ ] > Task :google_mobile_ads:compileDebugShaders NO-SOURCE
[ ] > Task :google_mobile_ads:generateDebugAssets UP-TO-DATE
[ ] > Task :google_mobile_ads:packageDebugAssets UP-TO-DATE
[ ] > Task :path_provider:mergeDebugShaders UP-TO-DATE
[ ] > Task :path_provider:compileDebugShaders NO-SOURCE
[ ] > Task :path_provider:generateDebugAssets UP-TO-DATE
[ +2 ms] > Task :path_provider:packageDebugAssets UP-TO-DATE
[ ] > Task :shared_preferences_android:mergeDebugShaders UP-TO-DATE
[ ] > Task :shared_preferences_android:compileDebugShaders NO-SOURCE
[ ] > Task :shared_preferences_android:generateDebugAssets UP-TO-DATE
[ ] > Task :shared_preferences_android:packageDebugAssets UP-TO-DATE
[ ] > Task :sqflite:mergeDebugShaders UP-TO-DATE
[ ] > Task :sqflite:compileDebugShaders NO-SOURCE
[ ] > Task :sqflite:generateDebugAssets UP-TO-DATE
[ ] > Task :sqflite:packageDebugAssets UP-TO-DATE
[ ] > Task :app:mergeDebugAssets
[ +279 ms] > Task :app:copyFlutterAssetsDebug
[ +2 ms] > Task :app:generateDebugResValues UP-TO-DATE
[ ] > Task :app:generateDebugResources UP-TO-DATE
[ ] > Task :app:processDebugGoogleServices UP-TO-DATE
[ ] > Task :cloud_firestore:compileDebugRenderscript NO-SOURCE
[ ] > Task :cloud_firestore:generateDebugResValues UP-TO-DATE
[ ] > Task :cloud_firestore:generateDebugResources UP-TO-DATE
[ ] > Task :cloud_firestore:packageDebugResources UP-TO-DATE
[ ] > Task :firebase_analytics:compileDebugRenderscript NO-SOURCE
[ ] > Task :firebase_analytics:generateDebugResValues UP-TO-DATE
[ ] > Task :firebase_analytics:generateDebugResources UP-TO-DATE
[ ] > Task :firebase_analytics:packageDebugResources UP-TO-DATE
[ ] > Task :firebase_core:compileDebugRenderscript NO-SOURCE
[ ] > Task :firebase_core:generateDebugResValues UP-TO-DATE
[ ] > Task :firebase_core:generateDebugResources UP-TO-DATE
[ ] > Task :firebase_core:packageDebugResources UP-TO-DATE
[ ] > Task :firebase_database:compileDebugRenderscript NO-SOURCE
[ ] > Task :firebase_database:generateDebugResValues UP-TO-DATE
[ ] > Task :firebase_database:generateDebugResources UP-TO-DATE
[ ] > Task :firebase_database:packageDebugResources UP-TO-DATE
[ ] > Task :flutter_local_notifications:compileDebugRenderscript NO-SOURCE
[ ] > Task :flutter_local_notifications:generateDebugResValues UP-TO-DATE
[ ] > Task :flutter_local_notifications:generateDebugResources UP-TO-DATE
[ ] > Task :flutter_local_notifications:packageDebugResources UP-TO-DATE
[ ] > Task :google_mobile_ads:compileDebugRenderscript NO-SOURCE
[ ] > Task :google_mobile_ads:generateDebugResValues UP-TO-DATE
[ ] > Task :google_mobile_ads:generateDebugResources UP-TO-DATE
[ ] > Task :google_mobile_ads:packageDebugResources UP-TO-DATE
[ ] > Task :path_provider:compileDebugRenderscript NO-SOURCE
[ +2 ms] > Task :path_provider:generateDebugResValues UP-TO-DATE
[ ] > Task :path_provider:generateDebugResources UP-TO-DATE
[ ] > Task :path_provider:packageDebugResources UP-TO-DATE
[ ] > Task :shared_preferences_android:compileDebugRenderscript NO-SOURCE
[ ] > Task :shared_preferences_android:generateDebugResValues UP-TO-DATE
[ ] > Task :shared_preferences_android:generateDebugResources UP-TO-DATE
[ ] > Task :shared_preferences_android:packageDebugResources UP-TO-DATE
[ ] > Task :sqflite:compileDebugRenderscript NO-SOURCE
[ ] > Task :sqflite:generateDebugResValues UP-TO-DATE
[ ] > Task :sqflite:generateDebugResources UP-TO-DATE
[ ] > Task :sqflite:packageDebugResources UP-TO-DATE
[ ] > Task :app:mergeDebugResources UP-TO-DATE
[ ] > Task :app:createDebugCompatibleScreenManifests UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:extractDeepLinksDebug UP-TO-DATE
[ ] > Task :app:extractDeepLinksDebug UP-TO-DATE
[ ] > Task :cloud_firestore:extractDeepLinksDebug UP-TO-DATE
[ ] > Task :cloud_firestore:processDebugManifest UP-TO-DATE
[ ] > Task :firebase_analytics:extractDeepLinksDebug UP-TO-DATE
[ ] > Task :firebase_analytics:processDebugManifest UP-TO-DATE
[ ] > Task :firebase_core:extractDeepLinksDebug UP-TO-DATE
[ ] > Task :firebase_core:processDebugManifest UP-TO-DATE
[ ] > Task :firebase_database:extractDeepLinksDebug UP-TO-DATE
[ ] > Task :firebase_database:processDebugManifest UP-TO-DATE
[ ] > Task :flutter_local_notifications:extractDeepLinksDebug UP-TO-DATE
[ ] > Task :flutter_local_notifications:processDebugManifest UP-TO-DATE
[ ] > Task :google_mobile_ads:extractDeepLinksDebug UP-TO-DATE
[ +63 ms] > Task :google_mobile_ads:processDebugManifest UP-TO-DATE
[ +1 ms] > Task :path_provider:extractDeepLinksDebug UP-TO-DATE
[ ] > Task :path_provider:processDebugManifest UP-TO-DATE
[ ] > Task :shared_preferences_android:extractDeepLinksDebug UP-TO-DATE
[ ] > Task :shared_preferences_android:processDebugManifest UP-TO-DATE
[ ] > Task :sqflite:extractDeepLinksDebug UP-TO-DATE
[ ] > Task :sqflite:processDebugManifest UP-TO-DATE
[ ] > Task :app:processDebugMainManifest UP-TO-DATE
[ ] > Task :app:processDebugManifest UP-TO-DATE
[ ] > Task :app:processDebugManifestForPackage UP-TO-DATE
[ ] > Task :cloud_firestore:compileDebugLibraryResources UP-TO-DATE
[ ] > Task :cloud_firestore:parseDebugLocalResources UP-TO-DATE
[ ] > Task :firebase_core:parseDebugLocalResources UP-TO-DATE
[ ] > Task :firebase_core:generateDebugRFile UP-TO-DATE
[ ] > Task :cloud_firestore:generateDebugRFile UP-TO-DATE
[ ] > Task :firebase_analytics:compileDebugLibraryResources UP-TO-DATE
[ ] > Task :firebase_analytics:parseDebugLocalResources UP-TO-DATE
[ ] > Task :firebase_analytics:generateDebugRFile UP-TO-DATE
[ ] > Task :firebase_core:compileDebugLibraryResources UP-TO-DATE
[ ] > Task :firebase_database:compileDebugLibraryResources UP-TO-DATE
[ ] > Task :firebase_database:parseDebugLocalResources UP-TO-DATE
[ +81 ms] > Task :firebase_database:generateDebugRFile UP-TO-DATE
[ +1 ms] > Task :flutter_local_notifications:compileDebugLibraryResources UP-TO-DATE
[ ] > Task :flutter_local_notifications:parseDebugLocalResources UP-TO-DATE
[ ] > Task :flutter_local_notifications:generateDebugRFile UP-TO-DATE
[ ] > Task :google_mobile_ads:compileDebugLibraryResources UP-TO-DATE
[ ] > Task :google_mobile_ads:parseDebugLocalResources UP-TO-DATE
[ ] > Task :google_mobile_ads:generateDebugRFile UP-TO-DATE
[ ] > Task :path_provider:compileDebugLibraryResources UP-TO-DATE
[ ] > Task :path_provider:parseDebugLocalResources UP-TO-DATE
[ ] > Task :path_provider:generateDebugRFile UP-TO-DATE
[ ] > Task :shared_preferences_android:compileDebugLibraryResources UP-TO-DATE
[ ] > Task :shared_preferences_android:parseDebugLocalResources UP-TO-DATE
[ ] > Task :shared_preferences_android:generateDebugRFile UP-TO-DATE
[ ] > Task :sqflite:compileDebugLibraryResources UP-TO-DATE
[ ] > Task :sqflite:parseDebugLocalResources UP-TO-DATE
[ ] > Task :sqflite:generateDebugRFile UP-TO-DATE
[ +100 ms] > Task :app:processDebugResources UP-TO-DATE
[ +1 ms] > Task :cloud_firestore:generateDebugBuildConfig UP-TO-DATE
[ ] > Task :cloud_firestore:javaPreCompileDebug UP-TO-DATE
[ ] > Task :firebase_core:generateDebugBuildConfig UP-TO-DATE
[ ] > Task :firebase_core:javaPreCompileDebug UP-TO-DATE
[ +1 ms] > Task :firebase_core:compileDebugJavaWithJavac UP-TO-DATE
[ ] > Task :firebase_core:bundleLibCompileToJarDebug UP-TO-DATE
[ ] > Task :cloud_firestore:compileDebugJavaWithJavac UP-TO-DATE
[ ] > Task :cloud_firestore:bundleLibCompileToJarDebug UP-TO-DATE
[ ] > Task :firebase_analytics:generateDebugBuildConfig UP-TO-DATE
[ ] > Task :firebase_analytics:javaPreCompileDebug UP-TO-DATE
[ ] > Task :firebase_analytics:compileDebugJavaWithJavac UP-TO-DATE
[ ] > Task :firebase_analytics:bundleLibCompileToJarDebug UP-TO-DATE
[ ] > Task :firebase_database:generateDebugBuildConfig UP-TO-DATE
[ +1 ms] > Task :firebase_database:javaPreCompileDebug UP-TO-DATE
[ ] > Task :firebase_database:compileDebugJavaWithJavac UP-TO-DATE
[ ] > Task :firebase_database:bundleLibCompileToJarDebug UP-TO-DATE
[ ] > Task :flutter_local_notifications:generateDebugBuildConfig UP-TO-DATE
[ ] > Task :flutter_local_notifications:javaPreCompileDebug UP-TO-DATE
[ ] > Task :flutter_local_notifications:compileDebugJavaWithJavac UP-TO-DATE
[ ] > Task :flutter_local_notifications:bundleLibCompileToJarDebug UP-TO-DATE
[ +2 ms] > Task :google_mobile_ads:generateDebugBuildConfig UP-TO-DATE
[ ] > Task :google_mobile_ads:javaPreCompileDebug UP-TO-DATE
[ ] > Task :google_mobile_ads:compileDebugJavaWithJavac UP-TO-DATE
[ ] > Task :google_mobile_ads:bundleLibCompileToJarDebug UP-TO-DATE
[ ] > Task :path_provider:generateDebugBuildConfig UP-TO-DATE
[ ] > Task :path_provider:javaPreCompileDebug UP-TO-DATE
[ ] > Task :path_provider:compileDebugJavaWithJavac UP-TO-DATE
[ ] > Task :path_provider:bundleLibCompileToJarDebug UP-TO-DATE
[ ] > Task :shared_preferences_android:generateDebugBuildConfig UP-TO-DATE
[ ] > Task :shared_preferences_android:javaPreCompileDebug UP-TO-DATE
[ ] > Task :shared_preferences_android:compileDebugJavaWithJavac UP-TO-DATE
[ ] > Task :shared_preferences_android:bundleLibCompileToJarDebug UP-TO-DATE
[ ] > Task :sqflite:generateDebugBuildConfig UP-TO-DATE
[ ] > Task :sqflite:javaPreCompileDebug UP-TO-DATE
[ ] > Task :sqflite:compileDebugJavaWithJavac UP-TO-DATE
[ ] > Task :sqflite:bundleLibCompileToJarDebug UP-TO-DATE
[ ] > Task :app:compileDebugKotlin UP-TO-DATE
[ ] > Task :app:javaPreCompileDebug UP-TO-DATE
[ +66 ms] > Task :app:compileDebugJavaWithJavac UP-TO-DATE
[ +1 ms] > Task :app:compileDebugSources UP-TO-DATE
[ ] > Task :app:mergeDebugNativeDebugMetadata NO-SOURCE
[ ] > Task :app:compressDebugAssets UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:bundleLibResDebug NO-SOURCE
[ ] > Task :app:processDebugJavaRes NO-SOURCE
[ ] > Task :cloud_firestore:processDebugJavaRes NO-SOURCE
[ ] > Task :cloud_firestore:bundleLibResDebug NO-SOURCE
[ ] > Task :firebase_analytics:processDebugJavaRes NO-SOURCE
[ ] > Task :firebase_analytics:bundleLibResDebug NO-SOURCE
[ ] > Task :firebase_core:processDebugJavaRes NO-SOURCE
[ ] > Task :firebase_core:bundleLibResDebug NO-SOURCE
[ ] > Task :firebase_database:processDebugJavaRes NO-SOURCE
[ ] > Task :firebase_database:bundleLibResDebug NO-SOURCE
[ ] > Task :flutter_local_notifications:processDebugJavaRes NO-SOURCE
[ ] > Task :flutter_local_notifications:bundleLibResDebug NO-SOURCE
[ ] > Task :google_mobile_ads:processDebugJavaRes NO-SOURCE
[ ] > Task :google_mobile_ads:bundleLibResDebug NO-SOURCE
[ ] > Task :path_provider:processDebugJavaRes NO-SOURCE
[ ] > Task :path_provider:bundleLibResDebug NO-SOURCE
[ ] > Task :shared_preferences_android:processDebugJavaRes NO-SOURCE
[ ] > Task :shared_preferences_android:bundleLibResDebug NO-SOURCE
[ ] > Task :sqflite:processDebugJavaRes NO-SOURCE
[ ] > Task :sqflite:bundleLibResDebug NO-SOURCE
[ ] > Task :app:mergeDebugJavaResource UP-TO-DATE
[ ] > Task :shared_preferences_android:bundleLibRuntimeToJarDebug UP-TO-DATE
[ ] > Task :firebase_core:bundleLibRuntimeToJarDebug UP-TO-DATE
[ ] > Task :firebase_analytics:bundleLibRuntimeToJarDebug UP-TO-DATE
[ ] > Task :firebase_database:bundleLibRuntimeToJarDebug UP-TO-DATE
[ +3 ms] > Task :cloud_firestore:bundleLibRuntimeToJarDebug UP-TO-DATE
[ ] > Task :google_mobile_ads:bundleLibRuntimeToJarDebug UP-TO-DATE
[ ] > Task :sqflite:bundleLibRuntimeToJarDebug UP-TO-DATE
[ ] > Task :android_alarm_manager_plus:bundleLibRuntimeToJarDebug UP-TO-DATE
[ ] > Task :flutter_local_notifications:bundleLibRuntimeToJarDebug UP-TO-DATE
[ ] > Task :path_provider:bundleLibRuntimeToJarDebug UP-TO-DATE
[ ] > Task :app:checkDebugDuplicateClasses UP-TO-DATE
[ ] > Task :app:desugarDebugFileDependencies UP-TO-DATE
[ ] > Task :app:dexBuilderDebug UP-TO-DATE
[ ] > Task :app:multiDexListDebug UP-TO-DATE
[ +86 ms] > Task :app:mergeDexDebug UP-TO-DATE
[ +1 ms] > Task :android_alarm_manager_plus:copyDebugJniLibsProjectOnly UP-TO-DATE
[ ] > Task :app:mergeDebugJniLibFolders UP-TO-DATE
[ ] > Task :cloud_firestore:mergeDebugJniLibFolders UP-TO-DATE
[ ] > Task :cloud_firestore:mergeDebugNativeLibs NO-SOURCE
[ ] > Task :cloud_firestore:stripDebugDebugSymbols NO-SOURCE
[ ] > Task :cloud_firestore:copyDebugJniLibsProjectOnly UP-TO-DATE
[ ] > Task :firebase_analytics:mergeDebugJniLibFolders UP-TO-DATE
[ ] > Task :firebase_analytics:mergeDebugNativeLibs NO-SOURCE
[ ] > Task :firebase_analytics:stripDebugDebugSymbols NO-SOURCE
[ ] > Task :firebase_analytics:copyDebugJniLibsProjectOnly UP-TO-DATE
[ ] > Task :firebase_core:mergeDebugJniLibFolders UP-TO-DATE
[ ] > Task :firebase_core:mergeDebugNativeLibs NO-SOURCE
[ ] > Task :firebase_core:stripDebugDebugSymbols NO-SOURCE
[ ] > Task :firebase_core:copyDebugJniLibsProjectOnly UP-TO-DATE
[ ] > Task :firebase_database:mergeDebugJniLibFolders UP-TO-DATE
[ ] > Task :firebase_database:mergeDebugNativeLibs NO-SOURCE
[ +87 ms] > Task :firebase_database:stripDebugDebugSymbols NO-SOURCE
[ +1 ms] > Task :firebase_database:copyDebugJniLibsProjectOnly UP-TO-DATE
[ ] > Task :flutter_local_notifications:mergeDebugJniLibFolders UP-TO-DATE
[ ] > Task :flutter_local_notifications:mergeDebugNativeLibs NO-SOURCE
[ ] > Task :flutter_local_notifications:stripDebugDebugSymbols NO-SOURCE
[ ] > Task :flutter_local_notifications:copyDebugJniLibsProjectOnly UP-TO-DATE
[ ] > Task :google_mobile_ads:mergeDebugJniLibFolders UP-TO-DATE
[ ] > Task :google_mobile_ads:mergeDebugNativeLibs NO-SOURCE
[ ] > Task :google_mobile_ads:stripDebugDebugSymbols NO-SOURCE
[ ] > Task :google_mobile_ads:copyDebugJniLibsProjectOnly UP-TO-DATE
[ ] > Task :path_provider:mergeDebugJniLibFolders UP-TO-DATE
[ ] > Task :path_provider:mergeDebugNativeLibs NO-SOURCE
[ ] > Task :path_provider:stripDebugDebugSymbols NO-SOURCE
[ ] > Task :path_provider:copyDebugJniLibsProjectOnly UP-TO-DATE
[ ] > Task :shared_preferences_android:mergeDebugJniLibFolders UP-TO-DATE
[ ] > Task :shared_preferences_android:mergeDebugNativeLibs NO-SOURCE
[ ] > Task :shared_preferences_android:stripDebugDebugSymbols NO-SOURCE
[ ] > Task :shared_preferences_android:copyDebugJniLibsProjectOnly UP-TO-DATE
[ ] > Task :sqflite:mergeDebugJniLibFolders UP-TO-DATE
[ ] > Task :sqflite:mergeDebugNativeLibs NO-SOURCE
[ ] > Task :sqflite:stripDebugDebugSymbols NO-SOURCE
[ ] > Task :sqflite:copyDebugJniLibsProjectOnly UP-TO-DATE
[ ] > Task :app:mergeDebugNativeLibs UP-TO-DATE
[ ] > Task :app:stripDebugDebugSymbols UP-TO-DATE
[ ] > Task :app:validateSigningDebug UP-TO-DATE
[ ] > Task :app:packageDebug UP-TO-DATE
[ +194 ms] > Task :app:assembleDebug
[ +1 ms] > Task :cloud_firestore:copyDebugJniLibsProjectAndLocalJars UP-TO-DATE
[ ] > Task :cloud_firestore:extractDebugAnnotations UP-TO-DATE
[ ] > Task :cloud_firestore:mergeDebugGeneratedProguardFiles UP-TO-DATE
[ ] > Task :cloud_firestore:mergeDebugConsumerProguardFiles UP-TO-DATE
[ ] > Task :cloud_firestore:prepareLintJarForPublish UP-TO-DATE
[ ] > Task :cloud_firestore:mergeDebugJavaResource UP-TO-DATE
[ ] > Task :cloud_firestore:syncDebugLibJars UP-TO-DATE
[ ] > Task :cloud_firestore:bundleDebugAar UP-TO-DATE
[ ] > Task :cloud_firestore:compileDebugSources UP-TO-DATE
[ ] > Task :cloud_firestore:assembleDebug UP-TO-DATE
[ ] > Task :firebase_analytics:copyDebugJniLibsProjectAndLocalJars UP-TO-DATE
[ ] > Task :firebase_analytics:extractDebugAnnotations UP-TO-DATE
[ ] > Task :firebase_analytics:mergeDebugGeneratedProguardFiles UP-TO-DATE
[ ] > Task :firebase_analytics:mergeDebugConsumerProguardFiles UP-TO-DATE
[ ] > Task :firebase_analytics:prepareLintJarForPublish UP-TO-DATE
[ ] > Task :firebase_analytics:mergeDebugJavaResource UP-TO-DATE
[ ] > Task :firebase_analytics:syncDebugLibJars UP-TO-DATE
[ ] > Task :firebase_analytics:bundleDebugAar UP-TO-DATE
[ ] > Task :firebase_analytics:compileDebugSources UP-TO-DATE
[ ] > Task :firebase_analytics:assembleDebug UP-TO-DATE
[ ] > Task :firebase_core:copyDebugJniLibsProjectAndLocalJars UP-TO-DATE
[ ] > Task :firebase_core:extractDebugAnnotations UP-TO-DATE
[ ] > Task :firebase_core:mergeDebugGeneratedProguardFiles UP-TO-DATE
[ +3 ms] > Task :firebase_core:mergeDebugConsumerProguardFiles UP-TO-DATE
[ ] > Task :firebase_core:prepareLintJarForPublish UP-TO-DATE
[ ] > Task :firebase_core:mergeDebugJavaResource UP-TO-DATE
[ ] > Task :firebase_core:syncDebugLibJars UP-TO-DATE
[ ] > Task :firebase_core:bundleDebugAar UP-TO-DATE
[ ] > Task :firebase_core:compileDebugSources UP-TO-DATE
[ ] > Task :firebase_core:assembleDebug UP-TO-DATE
[ ] > Task :firebase_database:copyDebugJniLibsProjectAndLocalJars UP-TO-DATE
[ ] > Task :firebase_database:extractDebugAnnotations UP-TO-DATE
[ ] > Task :firebase_database:mergeDebugGeneratedProguardFiles UP-TO-DATE
[ ] > Task :firebase_database:mergeDebugConsumerProguardFiles UP-TO-DATE
[ ] > Task :firebase_database:prepareLintJarForPublish UP-TO-DATE
[ ] > Task :firebase_database:mergeDebugJavaResource UP-TO-DATE
[ ] > Task :firebase_database:syncDebugLibJars UP-TO-DATE
[ ] > Task :firebase_database:bundleDebugAar UP-TO-DATE
[ ] > Task :firebase_database:compileDebugSources UP-TO-DATE
[ ] > Task :firebase_database:assembleDebug UP-TO-DATE
[ ] > Task :flutter_local_notifications:copyDebugJniLibsProjectAndLocalJars UP-TO-DATE
[ ] > Task :flutter_local_notifications:extractDebugAnnotations UP-TO-DATE
[ ] > Task :flutter_local_notifications:mergeDebugGeneratedProguardFiles UP-TO-DATE
[ ] > Task :flutter_local_notifications:mergeDebugConsumerProguardFiles UP-TO-DATE
[ ] > Task :flutter_local_notifications:prepareLintJarForPublish UP-TO-DATE
[ ] > Task :flutter_local_notifications:mergeDebugJavaResource UP-TO-DATE
[ ] > Task :flutter_local_notifications:syncDebugLibJars UP-TO-DATE
[ ] > Task :flutter_local_notifications:bundleDebugAar UP-TO-DATE
[ ] > Task :flutter_local_notifications:compileDebugSources UP-TO-DATE
[ ] > Task :flutter_local_notifications:assembleDebug UP-TO-DATE
[ +2 ms] > Task :google_mobile_ads:copyDebugJniLibsProjectAndLocalJars UP-TO-DATE
[ ] > Task :google_mobile_ads:extractDebugAnnotations UP-TO-DATE
[ +60 ms] > Task :google_mobile_ads:mergeDebugGeneratedProguardFiles UP-TO-DATE
[ +1 ms] > Task :google_mobile_ads:mergeDebugConsumerProguardFiles UP-TO-DATE
[ ] > Task :google_mobile_ads:prepareLintJarForPublish UP-TO-DATE
[ ] > Task :google_mobile_ads:mergeDebugJavaResource UP-TO-DATE
[ ] > Task :google_mobile_ads:syncDebugLibJars UP-TO-DATE
[ ] > Task :google_mobile_ads:bundleDebugAar UP-TO-DATE
[ ] > Task :google_mobile_ads:mergeDebugResources UP-TO-DATE
[ ] > Task :google_mobile_ads:compileDebugSources UP-TO-DATE
[ ] > Task :google_mobile_ads:assembleDebug UP-TO-DATE
[ ] > Task :path_provider:copyDebugJniLibsProjectAndLocalJars UP-TO-DATE
[ ] > Task :path_provider:extractDebugAnnotations UP-TO-DATE
[ ] > Task :path_provider:mergeDebugGeneratedProguardFiles UP-TO-DATE
[ ] > Task :path_provider:mergeDebugConsumerProguardFiles UP-TO-DATE
[ ] > Task :path_provider:prepareLintJarForPublish UP-TO-DATE
[ ] > Task :path_provider:mergeDebugJavaResource UP-TO-DATE
[ ] > Task :path_provider:syncDebugLibJars UP-TO-DATE
[ ] > Task :path_provider:bundleDebugAar UP-TO-DATE
[ ] > Task :path_provider:compileDebugSources UP-TO-DATE
[ ] > Task :path_provider:assembleDebug UP-TO-DATE
[ ] > Task :shared_preferences_android:copyDebugJniLibsProjectAndLocalJars UP-TO-DATE
[ ] > Task :shared_preferences_android:extractDebugAnnotations UP-TO-DATE
[ ] > Task :shared_preferences_android:mergeDebugGeneratedProguardFiles UP-TO-DATE
[ ] > Task :shared_preferences_android:mergeDebugConsumerProguardFiles UP-TO-DATE
[ ] > Task :shared_preferences_android:prepareLintJarForPublish UP-TO-DATE
[ ] > Task :shared_preferences_android:mergeDebugJavaResource UP-TO-DATE
[ ] > Task :shared_preferences_android:syncDebugLibJars UP-TO-DATE
[ ] > Task :shared_preferences_android:bundleDebugAar UP-TO-DATE
[ ] > Task :shared_preferences_android:mergeDebugResources UP-TO-DATE
[ +2 ms] > Task :shared_preferences_android:compileDebugSources UP-TO-DATE
[ ] > Task :shared_preferences_android:assembleDebug UP-TO-DATE
[ ] > Task :sqflite:copyDebugJniLibsProjectAndLocalJars UP-TO-DATE
[ ] > Task :sqflite:extractDebugAnnotations UP-TO-DATE
[ ] > Task :sqflite:mergeDebugGeneratedProguardFiles UP-TO-DATE
[ ] > Task :sqflite:mergeDebugConsumerProguardFiles UP-TO-DATE
[ ] > Task :sqflite:prepareLintJarForPublish UP-TO-DATE
[ +30 ms] > Task :sqflite:mergeDebugJavaResource UP-TO-DATE
[ ] > Task :sqflite:syncDebugLibJars UP-TO-DATE
[ ] > Task :sqflite:bundleDebugAar UP-TO-DATE
[ ] > Task :sqflite:compileDebugSources UP-TO-DATE
[ ] > Task :sqflite:assembleDebug UP-TO-DATE
[ ] Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
[ ] Use '--warning-mode all' to show the individual deprecation warnings.
[ ] See https://docs.gradle.org/6.7/userguide/command_line_interface.html#sec:command_line_warnings
[ ] BUILD SUCCESSFUL in 5s
[ ] 285 actionable tasks: 5 executed, 280 up-to-date
[ +508 ms] Running Gradle task 'assembleDebug'... (completed in 6.1s)
[ +50 ms] calculateSha: LocalDirectory: 'F:\kurd currency\kurd
currency\kurdcurrency\build\app\outputs\flutter-apk'/app.apk
[ +646 ms] √ Built build\app\outputs\flutter-apk\app-debug.apk.
[ +2 ms] executing: C:\Users\Hedi\AppData\Local\Android\sdk\build-tools\32.0.0\aapt dump xmltree F:\kurd currency\kurd
currency\kurdcurrency\build\app\outputs\flutter-apk\app.apk AndroidManifest.xml
[ +12 ms] Exit code 0 from: C:\Users\Hedi\AppData\Local\Android\sdk\build-tools\32.0.0\aapt dump xmltree F:\kurd
currency\kurd currency\kurdcurrency\build\app\outputs\flutter-apk\app.apk AndroidManifest.xml
[ ] N: android=http://schemas.android.com/apk/res/android
E: manifest (line=2)
A: android:versionCode(0x0101021b)=(type 0x10)0x1
A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0")
A: android:compileSdkVersion(0x01010572)=(type 0x10)0x1f
A: android:compileSdkVersionCodename(0x01010573)="12" (Raw: "12")
A: package="com.hedihadi.dinar" (Raw: "com.hedihadi.dinar")
A: platformBuildVersionCode=(type 0x10)0x1f
A: platformBuildVersionName=(type 0x10)0xc
E: uses-sdk (line=7)
A: android:minSdkVersion(0x0101020c)=(type 0x10)0x13
A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1f
E: uses-permission (line=14)
A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
E: uses-permission (line=15)
A: android:name(0x01010003)="android.permission.RECEIVE_BOOT_COMPLETED" (Raw:
"android.permission.RECEIVE_BOOT_COMPLETED")
E: uses-permission (line=16)
A: android:name(0x01010003)="android.permission.WAKE_LOCK" (Raw: "android.permission.WAKE_LOCK")
E: uses-permission (line=18)
A: android:name(0x01010003)="android.permission.SCHEDULE_EXACT_ALARM" (Raw:
"android.permission.SCHEDULE_EXACT_ALARM")
E: uses-permission (line=19)
A: android:name(0x01010003)="android.permission.ACCESS_NETWORK_STATE" (Raw:
"android.permission.ACCESS_NETWORK_STATE")
E: uses-permission (line=20)
A: android:name(0x01010003)="android.permission.VIBRATE" (Raw: "android.permission.VIBRATE")
E: uses-permission (line=21)
A: android:name(0x01010003)="android.permission.USE_FULL_SCREEN_INTENT" (Raw:
"android.permission.USE_FULL_SCREEN_INTENT")
E: uses-permission (line=22)
A: android:name(0x01010003)="com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE"
(Raw: "com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE")
E: queries (line=23)
E: intent (line=26)
E: action (line=27)
A: android:name(0x01010003)="android.intent.action.VIEW" (Raw: "android.intent.action.VIEW")
E: category (line=29)
A: android:name(0x01010003)="android.intent.category.BROWSABLE" (Raw:
"android.intent.category.BROWSABLE")
E: data (line=31)
A: android:scheme(0x01010027)="https" (Raw: "https")
E: intent (line=35)
E: action (line=36)
A: android:name(0x01010003)="android.support.customtabs.action.CustomTabsService" (Raw:
"android.support.customtabs.action.CustomTabsService")
E: application (line=41)
A: android:label(0x01010001)="Dinar - دینار" (Raw: "Dinar - دینار")
A: android:icon(0x01010002)=@0x7f0c0000
A: android:name(0x01010003)="androidx.multidex.MultiDexApplication" (Raw:
"androidx.multidex.MultiDexApplication")
A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
A: android:appComponentFactory(0x0101057a)="androidx.core.app.CoreComponentFactory" (Raw:
"androidx.core.app.CoreComponentFactory")
E: service (line=47)
A: android:name(0x01010003)="dev.fluttercommunity.plus.androidalarmmanager.AlarmService" (Raw:
"dev.fluttercommunity.plus.androidalarmmanager.AlarmService")
A: android:permission(0x01010006)="android.permission.BIND_JOB_SERVICE" (Raw:
"android.permission.BIND_JOB_SERVICE")
A: android:exported(0x01010010)=(type 0x12)0x0
E: receiver (line=52)
A: android:name(0x01010003)="dev.fluttercommunity.plus.androidalarmmanager.AlarmBroadcastReceiver"
(Raw: "dev.fluttercommunity.plus.androidalarmmanager.AlarmBroadcastReceiver")
A: android:exported(0x01010010)=(type 0x12)0x0
E: receiver (line=55)
A: android:name(0x01010003)="dev.fluttercommunity.plus.androidalarmmanager.RebootBroadcastReceiver"
(Raw: "dev.fluttercommunity.plus.androidalarmmanager.RebootBroadcastReceiver")
A: android:enabled(0x0101000e)=(type 0x12)0x0
A: android:exported(0x01010010)=(type 0x12)0x0
E: intent-filter (line=59)
E: action (line=60)
A: android:name(0x01010003)="android.intent.action.BOOT_COMPLETED" (Raw:
"android.intent.action.BOOT_COMPLETED")
E: activity (line=64)
A: android:theme(0x01010000)=@0x7f0e00a1
A: android:name(0x01010003)="com.hedihadi.dinar.MainActivity" (Raw:
"com.hedihadi.dinar.MainActivity")
A: android:launchMode(0x0101001d)=(type 0x10)0x1
A: android:configChanges(0x0101001f)=(type 0x11)0x40003fb4
A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff
E: meta-data (line=78)
A: android:name(0x01010003)="com.google.android.gms.ads.APPLICATION_ID" (Raw:
"com.google.android.gms.ads.APPLICATION_ID")
A: android:value(0x01010024)="ca-app-pub-5924426514255017~3558048622" (Raw:
"ca-app-pub-5924426514255017~3558048622")
E: meta-data (line=81)
A: android:name(0x01010003)="io.flutter.embedding.android.NormalTheme" (Raw:
"io.flutter.embedding.android.NormalTheme")
A: android:resource(0x01010025)=@0x7f0e00a2
E: meta-data (line=91)
A: android:name(0x01010003)="io.flutter.embedding.android.SplashScreenDrawable" (Raw:
"io.flutter.embedding.android.SplashScreenDrawable")
A: android:resource(0x01010025)=@0x7f07006d
E: intent-filter (line=95)
E: action (line=96)
A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
E: category (line=98)
A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw:
"android.intent.category.LAUNCHER")
E: meta-data (line=105)
A: android:name(0x01010003)="flutterEmbedding" (Raw: "flutterEmbedding")
A: android:value(0x01010024)=(type 0x10)0x2
E: meta-data (line=108)
A: android:name(0x01010003)="com.google.android.gms.ads.APPLICATION_ID" (Raw:
"com.google.android.gms.ads.APPLICATION_ID")
A: android:value(0x01010024)="ca-app-pub-5924426514255017~9984189005" (Raw:
"ca-app-pub-5924426514255017~9984189005")
E: service (line=112)
A: android:name(0x01010003)="com.google.firebase.components.ComponentDiscoveryService" (Raw:
"com.google.firebase.components.ComponentDiscoveryService")
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:directBootAware(0x01010505)=(type 0x12)0xffffffff
E: meta-data (line=116)
A:
android:name(0x01010003)="com.google.firebase.components:io.flutter.plugins.firebase.analytics.Flut
terFirebaseAppRegistrar" (Raw:
"com.google.firebase.components:io.flutter.plugins.firebase.analytics.FlutterFirebaseAppRegistrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
"com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=119)
A:
android:name(0x01010003)="com.google.firebase.components:io.flutter.plugins.firebase.database.Flutt
erFirebaseAppRegistrar" (Raw:
"com.google.firebase.components:io.flutter.plugins.firebase.database.FlutterFirebaseAppRegistrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
"com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=122)
A:
android:name(0x01010003)="com.google.firebase.components:io.flutter.plugins.firebase.firestore.Flut
terFirebaseFirestoreRegistrar" (Raw:
"com.google.firebase.components:io.flutter.plugins.firebase.firestore.FlutterFirebaseFirestoreRegis
trar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
"com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=125)
A:
android:name(0x01010003)="com.google.firebase.components:io.flutter.plugins.firebase.core.FlutterFi
rebaseCoreRegistrar" (Raw:
"com.google.firebase.components:io.flutter.plugins.firebase.core.FlutterFirebaseCoreRegistrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
"com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=128)
A:
android:name(0x01010003)="com.google.firebase.components:com.google.firebase.firestore.FirestoreReg
istrar" (Raw: "com.google.firebase.components:com.google.firebase.firestore.FirestoreRegistrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
"com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=131)
A:
android:name(0x01010003)="com.google.firebase.components:com.google.firebase.analytics.connector.in
ternal.AnalyticsConnectorRegistrar" (Raw:
"com.google.firebase.components:com.google.firebase.analytics.connector.internal.AnalyticsConnector
Registrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
"com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=134)
A:
android:name(0x01010003)="com.google.firebase.components:com.google.firebase.database.DatabaseRegis
trar" (Raw: "com.google.firebase.components:com.google.firebase.database.DatabaseRegistrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
"com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=137)
A:
android:name(0x01010003)="com.google.firebase.components:com.google.firebase.installations.Firebase
InstallationsRegistrar" (Raw:
"com.google.firebase.components:com.google.firebase.installations.FirebaseInstallationsRegistrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw:
"com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=142)
A: android:name(0x01010003)="io.flutter.embedded_views_preview" (Raw:
"io.flutter.embedded_views_preview")
A: android:value(0x01010024)=(type 0x12)0xffffffff
E: receiver (line=146)
A: android:name(0x01010003)="com.dexterous.flutterlocalnotifications.ScheduledNotificationReceiver"
(Raw: "com.dexterous.flutterlocalnotifications.ScheduledNotificationReceiver")
A: android:exported(0x01010010)=(type 0x12)0x0
E: receiver (line=149)
A:
android:name(0x01010003)="com.dexterous.flutterlocalnotifications.ScheduledNotificationBootReceiver"
(Raw: "com.dexterous.flutterlocalnotifications.ScheduledNotificationBootReceiver")
A: android:exported(0x01010010)=(type 0x12)0x0
E: intent-filter (line=152)
E: action (line=153)
A: android:name(0x01010003)="android.intent.action.BOOT_COMPLETED" (Raw:
"android.intent.action.BOOT_COMPLETED")
E: action (line=154)
A: android:name(0x01010003)="android.intent.action.MY_PACKAGE_REPLACED" (Raw:
"android.intent.action.MY_PACKAGE_REPLACED")
E: action (line=155)
A: android:name(0x01010003)="android.intent.action.QUICKBOOT_POWERON" (Raw:
"android.intent.action.QUICKBOOT_POWERON")
E: action (line=156)
A: android:name(0x01010003)="com.htc.intent.action.QUICKBOOT_POWERON" (Raw:
"com.htc.intent.action.QUICKBOOT_POWERON")
E: provider (line=160)
A: android:name(0x01010003)="com.google.firebase.provider.FirebaseInitProvider" (Raw:
"com.google.firebase.provider.FirebaseInitProvider")
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:authorities(0x01010018)="com.hedihadi.dinar.firebaseinitprovider" (Raw:
"com.hedihadi.dinar.firebaseinitprovider")
A: android:initOrder(0x0101001a)=(type 0x10)0x64
A: android:directBootAware(0x01010505)=(type 0x12)0xffffffff
E: receiver (line=167)
A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementReceiver" (Raw:
"com.google.android.gms.measurement.AppMeasurementReceiver")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0x0
E: service (line=173)
A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementService" (Raw:
"com.google.android.gms.measurement.AppMeasurementService")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0x0
E: service (line=177)
A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementJobService" (Raw:
"com.google.android.gms.measurement.AppMeasurementJobService")
A: android:permission(0x01010006)="android.permission.BIND_JOB_SERVICE" (Raw:
"android.permission.BIND_JOB_SERVICE")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0x0
E: activity (line=183)
A: android:theme(0x01010000)=@0x01030010
A: android:name(0x01010003)="com.google.android.gms.common.api.GoogleApiActivity" (Raw:
"com.google.android.gms.common.api.GoogleApiActivity")
A: android:exported(0x01010010)=(type 0x12)0x0
E: activity (line=187)
A: android:theme(0x01010000)=@0x0103000f
A: android:name(0x01010003)="com.google.android.gms.ads.AdActivity" (Raw:
"com.google.android.gms.ads.AdActivity")
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:configChanges(0x0101001f)=(type 0x11)0xfb0
E: provider (line=193)
A: android:name(0x01010003)="com.google.android.gms.ads.MobileAdsInitProvider" (Raw:
"com.google.android.gms.ads.MobileAdsInitProvider")
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:authorities(0x01010018)="com.hedihadi.dinar.mobileadsinitprovider" (Raw:
"com.hedihadi.dinar.mobileadsinitprovider")
A: android:initOrder(0x0101001a)=(type 0x10)0x64
E: service (line=199)
A: android:name(0x01010003)="com.google.android.gms.ads.AdService" (Raw:
"com.google.android.gms.ads.AdService")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0x0
E: meta-data (line=204)
A: android:name(0x01010003)="com.google.android.gms.version" (Raw: "com.google.android.gms.version")
A: android:value(0x01010024)=@0x7f090004
E: provider (line=208)
A: android:name(0x01010003)="androidx.work.impl.WorkManagerInitializer" (Raw:
"androidx.work.impl.WorkManagerInitializer")
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:multiprocess(0x01010013)=(type 0x12)0xffffffff
A: android:authorities(0x01010018)="com.hedihadi.dinar.workmanager-init" (Raw:
"com.hedihadi.dinar.workmanager-init")
A: android:directBootAware(0x01010505)=(type 0x12)0x0
E: service (line=215)
A: android:name(0x01010003)="androidx.work.impl.background.systemalarm.SystemAlarmService" (Raw:
"androidx.work.impl.background.systemalarm.SystemAlarmService")
A: android:enabled(0x0101000e)=@0x7f040002
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:directBootAware(0x01010505)=(type 0x12)0x0
E: service (line=220)
A: android:name(0x01010003)="androidx.work.impl.background.systemjob.SystemJobService" (Raw:
"androidx.work.impl.background.systemjob.SystemJobService")
A: android:permission(0x01010006)="android.permission.BIND_JOB_SERVICE" (Raw:
"android.permission.BIND_JOB_SERVICE")
A: android:enabled(0x0101000e)=@0x7f040003
A: android:exported(0x01010010)=(type 0x12)0xffffffff
A: android:directBootAware(0x01010505)=(type 0x12)0x0
E: receiver (line=227)
A: android:name(0x01010003)="androidx.work.impl.utils.ForceStopRunnable$BroadcastReceiver" (Raw:
"androidx.work.impl.utils.ForceStopRunnable$BroadcastReceiver")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:directBootAware(0x01010505)=(type 0x12)0x0
E: receiver (line=232)
A:
android:name(0x01010003)="androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryChargingPr
oxy" (Raw: "androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryChargingProxy")
A: android:enabled(0x0101000e)=(type 0x12)0x0
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:directBootAware(0x01010505)=(type 0x12)0x0
E: intent-filter (line=237)
E: action (line=238)
A: android:name(0x01010003)="android.intent.action.ACTION_POWER_CONNECTED" (Raw:
"android.intent.action.ACTION_POWER_CONNECTED")
E: action (line=239)
A: android:name(0x01010003)="android.intent.action.ACTION_POWER_DISCONNECTED" (Raw:
"android.intent.action.ACTION_POWER_DISCONNECTED")
E: receiver (line=242)
A:
android:name(0x01010003)="androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryNotLowProx
y" (Raw: "androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryNotLowProxy")
A: android:enabled(0x0101000e)=(type 0x12)0x0
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:directBootAware(0x01010505)=(type 0x12)0x0
E: intent-filter (line=247)
E: action (line=248)
A: android:name(0x01010003)="android.intent.action.BATTERY_OKAY" (Raw:
"android.intent.action.BATTERY_OKAY")
E: action (line=249)
A: android:name(0x01010003)="android.intent.action.BATTERY_LOW" (Raw:
"android.intent.action.BATTERY_LOW")
E: receiver (line=252)
A:
android:name(0x01010003)="androidx.work.impl.background.systemalarm.ConstraintProxy$StorageNotLowProx
y" (Raw: "androidx.work.impl.background.systemalarm.ConstraintProxy$StorageNotLowProxy")
A: android:enabled(0x0101000e)=(type 0x12)0x0
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:directBootAware(0x01010505)=(type 0x12)0x0
E: intent-filter (line=257)
E: action (line=258)
A: android:name(0x01010003)="android.intent.action.DEVICE_STORAGE_LOW" (Raw:
"android.intent.action.DEVICE_STORAGE_LOW")
E: action (line=259)
A: android:name(0x01010003)="android.intent.action.DEVICE_STORAGE_OK" (Raw:
"android.intent.action.DEVICE_STORAGE_OK")
E: receiver (line=262)
A:
android:name(0x01010003)="androidx.work.impl.background.systemalarm.ConstraintProxy$NetworkStateProxy
" (Raw: "androidx.work.impl.background.systemalarm.ConstraintProxy$NetworkStateProxy")
A: android:enabled(0x0101000e)=(type 0x12)0x0
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:directBootAware(0x01010505)=(type 0x12)0x0
E: intent-filter (line=267)
E: action (line=268)
A: android:name(0x01010003)="android.net.conn.CONNECTIVITY_CHANGE" (Raw:
"android.net.conn.CONNECTIVITY_CHANGE")
E: receiver (line=271)
A: android:name(0x01010003)="androidx.work.impl.background.systemalarm.RescheduleReceiver" (Raw:
"androidx.work.impl.background.systemalarm.RescheduleReceiver")
A: android:enabled(0x0101000e)=(type 0x12)0x0
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:directBootAware(0x01010505)=(type 0x12)0x0
E: intent-filter (line=276)
E: action (line=277)
A: android:name(0x01010003)="android.intent.action.BOOT_COMPLETED" (Raw:
"android.intent.action.BOOT_COMPLETED")
E: action (line=278)
A: android:name(0x01010003)="android.intent.action.TIME_SET" (Raw:
"android.intent.action.TIME_SET")
E: action (line=279)
A: android:name(0x01010003)="android.intent.action.TIMEZONE_CHANGED" (Raw:
"android.intent.action.TIMEZONE_CHANGED")
E: receiver (line=282)
A: android:name(0x01010003)="androidx.work.impl.background.systemalarm.ConstraintProxyUpdateReceiver"
(Raw: "androidx.work.impl.background.systemalarm.ConstraintProxyUpdateReceiver")
A: android:enabled(0x0101000e)=@0x7f040002
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:directBootAware(0x01010505)=(type 0x12)0x0
E: intent-filter (line=287)
E: action (line=288)
A: android:name(0x01010003)="androidx.work.impl.background.systemalarm.UpdateProxies" (Raw:
"androidx.work.impl.background.systemalarm.UpdateProxies")
E: service (line=292)
A: android:name(0x01010003)="androidx.room.MultiInstanceInvalidationService" (Raw:
"androidx.room.MultiInstanceInvalidationService")
A: android:exported(0x01010010)=(type 0x12)0x0
[ +13 ms] Stopping app 'app.apk' on M2101K6G.
[ ] executing: C:\Users\Hedi\AppData\Local\Android\sdk\platform-tools\adb.exe -s 192.168.0.181:5555 shell am
force-stop com.hedihadi.dinar
[ +97 ms] executing: C:\Users\Hedi\AppData\Local\Android\sdk\platform-tools\adb.exe -s 192.168.0.181:5555 shell pm list
packages com.hedihadi.dinar
[ +90 ms] package:com.hedihadi.dinar
[ +1 ms] executing: C:\Users\Hedi\AppData\Local\Android\sdk\platform-tools\adb.exe -s 192.168.0.181:5555 shell cat
/data/local/tmp/sky.com.hedihadi.dinar.sha1
[ +65 ms] c27143238680c35b7ca67f0941ed032fe5b3cbbb
[ +1 ms] Latest build already installed.
[ ] executing: C:\Users\Hedi\AppData\Local\Android\sdk\platform-tools\adb.exe -s 192.168.0.181:5555 shell -x
logcat -v time -t 1
[ +171 ms] --------- beginning of main
01-06 17:14:44.295 W/fb4a.FrscLanguagePack( 8171): FRSC English string not found for ID #0x7f130175
[ +4 ms] executing: C:\Users\Hedi\AppData\Local\Android\sdk\platform-tools\adb.exe -s 192.168.0.181:5555 shell am
start -a android.intent.action.RUN -f 0x20000000 --ez enable-background-compilation true --ez enable-dart-profiling true
--ez enable-checked-mode true --ez verify-entry-points true com.hedihadi.dinar/com.hedihadi.dinar.MainActivity
[ +154 ms] Starting: Intent { act=android.intent.action.RUN flg=0x20000000 cmp=com.hedihadi.dinar/.MainActivity (has
extras) }
[ +1 ms] Waiting for observatory port to be available...
[ +682 ms] W/FlutterActivityAndFragmentDelegate(11619): A splash screen was provided to Flutter, but this is deprecated.
See flutter.dev/go/android-splash-migration for migration steps.
[ +238 ms] Observatory URL on device: http://127.0.0.1:37435/dEMAQmGXcLY=/
[ +1 ms] executing: C:\Users\Hedi\AppData\Local\Android\sdk\platform-tools\adb.exe -s 192.168.0.181:5555 forward tcp:0
tcp:37435
[ +12 ms] 59681
[ ] Forwarded host port 59681 to device port 37435 for Observatory
[ +4 ms] Caching compiled dill
[ +25 ms] Connecting to service protocol: http://127.0.0.1:59681/dEMAQmGXcLY=/
[ +269 ms] Launching a Dart Developer Service (DDS) instance at http://127.0.0.1:0, connecting to VM service at
http://127.0.0.1:59681/dEMAQmGXcLY=/.
[ +44 ms] I/FlutterBackgroundExecutor(11619): Starting AlarmService...
[ +296 ms] DDS is listening at http://127.0.0.1:59684/HiQTI7GwshU=/.
[ +36 ms] Successfully connected to service protocol: http://127.0.0.1:59681/dEMAQmGXcLY=/
[ +102 ms] DevFS: Creating new filesystem on the device (null)
[ +29 ms] DevFS: Created new filesystem on the device
(file:///data/user/0/com.hedihadi.dinar/code_cache/kurdcurrencyVYQZGD/kurdcurrency/)
[ +2 ms] Updating assets
[ +77 ms] Manifest contained wildcard assets. Inserting missing file into build graph to force rerun. for more
information see #56466.
[ +4 ms] Syncing files to device M2101K6G...
[ +1 ms] <- reset
[ ] Compiling dart to kernel with 0 updated files
[ +2 ms] <- recompile
file:///F:/kurd%20currency/kurd%20currency/kurdcurrency/.dart_tool/flutter_build/generated_main.dart
d2e9fc42-851d-4777-a911-70fc0ad79436
[ ] <- d2e9fc42-851d-4777-a911-70fc0ad79436
[ +102 ms] Updating files.
[ +1 ms] DevFS: Sync finished
[ +1 ms] Syncing files to device M2101K6G... (completed in 108ms)
[ +1 ms] Synced 0.0MB.
[ +1 ms] <- accept
[ +9 ms] Connected to _flutterView/0xb40000722be6d020.
[ ] Connected to _flutterView/0xb40000727a41c820.
[ +1 ms] Flutter run key commands.
[ +1 ms] r Hot reload.
[ ] R Hot restart.
[ ] h List all available interactive commands.
[ ] d Detach (terminate "flutter run" but leave application running).
[ ] c Clear the screen
[ ] q Quit (terminate the application on the device).
[ ] Running with sound null safety
[ ] An Observatory debugger and profiler on M2101K6G is available at: http://127.0.0.1:59684/HiQTI7GwshU=/
[ +1 ms] The Flutter DevTools debugger and profiler on M2101K6G is available at:
http://127.0.0.1:9101?uri=http://127.0.0.1:59684/HiQTI7GwshU=/
[+80794 ms] I/AndroidAlarmManagerPlugin(11619): onDetachedFromEngine
[+1630 ms] Service protocol connection closed.
[ +1 ms] Lost connection to device.
[ +1 ms] DevFS: Deleting filesystem on the device
(file:///data/user/0/com.hedihadi.dinar/code_cache/kurdcurrencyVYQZGD/kurdcurrency/)
[ +256 ms] Ignored error while cleaning up DevFS: TimeoutException after 0:00:00.250000: Future not completed
[ +8 ms] "flutter run" took 93,263ms.
[ +210 ms] ensureAnalyticsSent: 208ms
[ +1 ms] Running shutdown hooks
[ ] Shutdown hooks complete
[ ] exiting with code 0
(the app exits because i kill it from my phone)
[√] Flutter (Channel stable, 2.8.0, on Microsoft Windows [Version 10.0.19043.1415], locale en-US)
• Flutter version 2.8.0 at C:\Users\Hedi\AppData\Local\flutter
• Upstream repository https://github.com/flutter/flutter.git
• Framework revision cf44000065 (4 weeks ago), 2021-12-08 14:06:50 -0800
• Engine revision 40a99c5951
• Dart version 2.15.0
[√] Android toolchain - develop for Android devices (Android SDK version 32.0.0)
• Android SDK at C:\Users\Hedi\AppData\Local\Android\sdk
• Platform android-32, build-tools 32.0.0
• Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java
• Java version OpenJDK Runtime Environment (build 11.0.10+0-b96-7249189)
• All Android licenses accepted.
[X] Chrome - develop for the web (Cannot find Chrome executable at .\Google\Chrome\Application\chrome.exe)
! Cannot find Chrome. Try setting CHROME_EXECUTABLE to a Chrome executable.
[√] Android Studio (version 2020.3)
• Android Studio at C:\Program Files\Android\Android Studio
• Flutter plugin can be installed from:
https://plugins.jetbrains.com/plugin/9212-flutter
• Dart plugin can be installed from:
https://plugins.jetbrains.com/plugin/6351-dart
• Java version OpenJDK Runtime Environment (build 11.0.10+0-b96-7249189)
[√] VS Code (version 1.63.2)
• VS Code at C:\Users\Hedi\AppData\Local\Programs\Microsoft VS Code
• Flutter extension version 3.32.0
[√] Connected device (2 available)
• M2101K6G (mobile) • 192.168.0.181:5555 • android-arm64 • Android 11 (API 30)
• Edge (web) • edge • web-javascript • Microsoft Edge 96.0.1054.62
! Doctor found issues in 1 category.
My device is Xiaomi Redmi note 10 pro
android 11
MIUI by xiaomi.eu 12.5.8Stable
my app works fine while the app is NOT closed in background, i get notifications every 10 seconds, but whenever i kill the app in background, the schedule does not get executed anymore.
System info
Issue occurs on: Android
Plugin name: android_alarm_manager_plus
Plugin version: ^2.0.3
Flutter doctor output:
Steps to Reproduce
using this code
1.the alarm works fine, i get random numbers in my firebase roughly every 10 seconds
2. i press the button on my android that shows all the running apps, i swipe my app to kill it
3. i dont get random numbers in my firebase anymore, (i also tried to send local notifications instead of connecting to my database, same problem
Logs
(the app exits because i kill it from my phone)
My device is Xiaomi Redmi note 10 pro
android 11
MIUI by xiaomi.eu 12.5.8Stable