skip to Main Content

Android Studio – Android Studio Gradle completely fell apart, crash to update 7.1.2 to 6.1.1

When I make change my Gradle 7.1.2 to 6.1.1 crash my Gradle. I don't even know how to sleep 7.1.2 version Could not find com.android.tools.build:gradle:6.1.1. Searched in the following locations: - https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/6.1.1/gradle-6.1.1.pom - https://repo.maven.apache.org/maven2/com/android/tools/build/gradle/6.1.1/gradle-6.1.1.pom Required by: project :capacitor-app Add google…

VIEW QUESTION

Android Studio – Run Android instrumented tests fail

I tried to implement some unit and instrumented tests for my Android application (Java), my unit tests is working fine but instrumented tests are failing: @RunWith(AndroidJUnit4.class) @LargeTest public class ExampleInstrumentedTest { @Rule public IntentsTestRule<MainActivity> mActivityRule = new IntentsTestRule<>(MainActivity.class); @Test public…

VIEW QUESTION

Android Studio – Manifest merger failed : android:exported needs to be explicitly specified for element <activity#com.instabug.bug

Merging Errors: Error: android:exported needs to be explicitly specified for element <activity#com.instabug.bug.view.reporting.ReportingContainerActivity>. Apps targeting Android 12 and higher are required to specify an explicit value for android:exported when the corresponding component has an intent filter defined. See https://developer.android.com/guide/topics/manifest/activity-element#exported for details

VIEW QUESTION

Android Studio – Gradle doesn't sync in Android Studio

I'm new to Android studio and I'm trying to set up a new project but I face this error message: Could not find com.android.tools.build:gradle:7.0.4. Searched in the following locations: - https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/7.0.4/gradle-7.0.4.pom - https://repo.maven.apache.org/maven2/com/android/tools/build/gradle/7.0.4/gradle-7.0.4.pom Required by: project : Add google Maven…

VIEW QUESTION

Android Studio – How can I implement another action after the animation has ended? – Java

Can anyone help? ===================================================== I tried like this: Animation zoom, zoom_out; zoomAnimation(); private void zoomAnimation() { zoom= AnimationUtils.loadAnimation(this,R.anim.fast_zoomin); avatar.startAnimation(zoom); //question if (zoom.hasEnded()){ zoomoutAnimation(); } //question } private void zoomoutAnimation() { zoom_out= AnimationUtils.loadAnimation(this,R.anim.fast_zoomout); avatar.startAnimation(zoom_out); }

VIEW QUESTION
Back To Top
Search