skip to Main Content

Android Studio – Bintray 502 bad gateway in android Studio

I'm using maven { url "http://dl.bintray.com/populov/maven" } in my project-level build.gradle file. Since bintray is shutdown, what can be the replacement of this repo? Could not resolve androidx.room:room-compiler:2.2.4. > Could not get resource 'http://dl.bintray.com/populov/maven/androidx/room/room-compiler/2.2.4/room-compiler-2.2.4.pom'. > Could not HEAD 'http://dl.bintray.com/populov/maven/androidx/room/room-compiler/2.2.4/room-compiler-2.2.4.pom'. Received…

VIEW QUESTION

Android Studio – android.tools.r8.a:MethodHandle.invoke and MethodHandle.invokeExact are only supported starting with Android O (–min-api 26) after installing itext7

I am getting below error after installing itext7: com.android.tools.r8.a: MethodHandle.invoke and MethodHandle.invokeExact are only supported starting with Android O (--min-api 26) implementation "com.itextpdf:itext7-core:7.1.3" I tried following solutions but it didn't work either: compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } In…

VIEW QUESTION

Android Studio – How to add plugins in the Android Studio Bumblebee

I want to add dagger-hilt plugin to project. classpath 'com.google.dagger:hilt-android-gradle-plugin:2.40.5' https://developer.android.com/studio/preview/features#settings-gradle plugins { id 'com.android.application' version '7.1.0-beta02' apply false id 'com.android.library' version '7.1.0-beta02' apply false id 'org.jetbrains.kotlin.android' version '1.5.30' apply false } task clean(type: Delete) { delete rootProject.buildDir } pluginManagement…

VIEW QUESTION
Back To Top
Search