skip to Main Content

[flutter]how to rebuild android studio

I got this error in my M1 Macbook air : FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':image_picker_android:parseDebugLocalResources'. > A failure occurred while executing com.android.build.gradle.internal.res.ParseLibraryResourcesTask$ParseResourcesRunnable > Failed file name validation for file /Users/koseongjun/Desktop/caker/build/image_picker_android/intermediates/packaged_res/debug/xml/flutter_image_picker_file_paths…

VIEW QUESTION

Plugin android studio

I am using gradle version 7.0 and plugin version 7.0.4 (using java language) I had an error with title projectname failed. And no other information involved. I changed gradle to version 7 and now I have an error : Plugin[id:…

VIEW QUESTION

Android Studio – POST_NOTIFICATIONS request doesn't work, dialog box not showing

In manifest: <uses-permission android:name="android.permission.POST_NOTIFICATIONS"/> In Activity: if (Build.VERSION.SDK_INT >= 33) { if (ContextCompat.checkSelfPermission(this, Manifest.permission.POST_NOTIFICATIONS) != PackageManager.PERMISSION_GRANTED) { ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.POST_NOTIFICATIONS},1); } else { // } } In the build.gradle file the targetSdkVersion is 34 I have other permission requests like…

VIEW QUESTION

Android Studio – How can you replicate a bug seen when installing an app via App Bundle from the Google Play store?

We've developed an app that works flawlessly when run from Android Studio with the following configuration: buildTypes { debug { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } release { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } To simulate a Google Play…

VIEW QUESTION
Back To Top
Search