I am using AIDE to programming in my android phone And i must download any support library to use it in my project libs folder So i want to tell me how to download google support libraries Like firebase.google.jar And google gms library and other libraries Is there a link? Help me how to download it?
Asked
Active
Viewed 572 times
1 Answers
0
Instead of downloading and including JAR files (deprecated) you should be using the gradle build system and including it in the dependencies. There is a step-by-step here explaining how to use it.
/build.gradle:
buildscript {
// ...
dependencies {
// ...
classpath 'com.google.gms:google-services:3.0.0'
}
}
/app/build.gradle:
dependencies {
// ...
compile 'com.google.firebase:firebase-core:9.4.0'
}

Veener
- 4,771
- 2
- 29
- 37
-
Thank u. but this doesnt work with me because i am using mobile app to programming and its name AIDE.. So when i do this step it doesnt work. – user6844063 Sep 18 '16 at 00:35
-
I'd highly recommend you use Android Studio. It is the only IDE that Google officially supports and most professionals use it as well. https://developer.android.com/studio/index.html – Veener Sep 18 '16 at 00:48
-
According to this link AIDE does support maven. Maybe this answer will help? http://stackoverflow.com/questions/26007146/how-to-use-libraries-in-aide?rq=1 – Veener Sep 18 '16 at 00:53