is there any comptability of android studio 1.5.1 and retrofit - android

I am facing below error while adding retrofit library in android studio 1.5.1.
Error:(8, 0) Gradle DSL method not found: 'implementation()'
Possible causes:The project 'RetrofitMy Application' may be using a version of Gradle that does not contain the method.
I googled in order to resolve above issue but did not find yet ,any one can help me

You should change your
implementation 'thelibrary:1.0.0'
to
compile 'thelibrary:1.0.0'

Related

Can't compile android maps untils anymore

A very uncommon problem occured to me. Everything was perfectly working and all of the sudden I couldn't compile 'com.google.maps.android:android-maps-utils:0.5.+' anymore.
I couldn't find a way to fix it, so I updated Android Studio to version 3.0.1, created a new project and tried to compile just this dependency. My other dependencies cause no problems but this one is giving the error message:
Unable to resolve dependency for ':app#debug/compileClasspath': Could not find any version that matches com.google.maps.android:android-maps-utils:0.5.+.
Could not find any version that matches com.google.maps.android:android-maps-utils:0.5.+.
Versions that do not match:
0.5
0.4.4
0.4.3
0.4.2
0.4.1
+ 9 more
Required by:
project :app*
Does anybody has an idea on how to fix this?
There is no version matching the 0.5.+ pattern for maputils. Use implementation 'com.google.maps.android:android-maps-utils:0.5' instead.

Wikitude SDK set-up

I'm new to Wikitudea and I'm trying to get it on the last version of Android Studio and I'm stuck… I followed the instructions of wikitude's video “Set-up Guide. Android Javascript API” and I get these error messages:
on Gradle sync:
…//WikitudeSDK_Android_5-1-4_2016-03-14_14-50-48/Examples/SDKExamples/build.gradle
Error:(16, 0)
Gradle DSL method not found: 'android()'
Possible causes:
-The project 'SDKExamples' may be using a version of Gradle that does not contain the method.
-The build file may be missing a Gradle plugin.
on Gradle build:
Error:(16, 1) A problem occurred evaluating root project 'SDKExamples'.
Could not find method android() for arguments [build_9gtn2gg2nuca14amc9jhql4mv$_run_closure2#7fd77467] on root project 'SDKExamples'.
Could you please help me? I don't know what to do...

Integrating SQLCIPHER in Android Studio Project

I tried integrating SQLCipher in my Android Application, using this link and also some stack-overflow links(but they are out-dated and differs from official document).
All the steps are correctly followed, and there is no error in the coding part. But at last, when I build the project, the error message I get is :
Error:(11, 0) Gradle DSL method not found: 'defaultConfig()'
Possible causes:The project 'android-database-sqlcipher-master1' may be using a version of Gradle that does not contain the method.
Open Gradle wrapper fileThe build file may be missing a Gradle plugin.
Apply Gradle plugin
Can anyone please help me to get rid of this error.
add this to your build.gradle of your app and it should work out of the box:
dependencies {
compile 'net.zetetic:android-database-sqlcipher:3.5.2#aar'
...
}
In your code, you should load the 'native libraries' as this 'aar' file contains a few of them.
SQLiteDatabase.loadLibs(context);
NOTE that you should use the net.sqlcipher.database.SQLiteDatabase instead of android.database.sqlite.SQLiteDatabase, just like a couple of other SQLite classes.

Building an Android app for ROS

I am following this tutorial to build and android app for ROS
After I import this in Android studio having following problem, I am using Android studio in windows 7.
Error:(66, 0) Gradle DSL method not found: 'android()'
Possible causes:The project 'android_apps' may be using a version of Gradle that does not contain the method.
Open Gradle wrapper fileThe build file may be missing a Gradle plugin.
Apply Gradle plugin

Error:(31, 0) Gradle DSL method not found: 'jniDebugBuild()'

Today I have updated my Android Studio and I keep getting this error no matter what I do. I imported a project from github everything was running smoothly until I updated now I keep getting this error:
Error:(31, 0) Gradle DSL method not found: 'jniDebugBuild()'
Possible causes:The project 'my_application' may be using a version of Gradle that does not contain the method.
Open Gradle wrapper fileThe build file may be missing a Gradle plugin.
Apply Gradle plugin
Can anyone help out?
The name of this property has changed in v0.14.0 and later of the Android Gradle plugin, so build files created for earlier versions need to be updated. Look through all the build.gradle files in the project, and when you see jniDebugBuild, change it to jniDebuggable.
You may run into other things that need to be renamed; the list of remappings is in the release notes at http://tools.android.com/tech-docs/new-build-system.

Categories

Resources