Aide is an IDE that runs on the android operating system, letting you write, compile, and then test your project all on your device and reducing the need to use eclipse. Page on the app store can be found here - https://play.google.com/store/apps/details?id=com.aide.ui&hl=en
Questions tagged [aide-ide]
98 questions
14
votes
1 answer
How do I clear up this ambiguous call to Arrays.copyof()?
I'm running AIDE on my Android phone, and am having trouble compiling the following bit of Java code:
elements = Arrays.copyOf(elements, elements.length * 2);
Here elements is of type int[]. The error I'm getting from AIDE is
Several methods are…

Hannesh
- 7,256
- 7
- 46
- 80
9
votes
2 answers
Toolbar Action Button Icon color
I am using the appcompat-v7 toolbar and added some menu with icons.
My menu_items.xml
-

Karyuu Ouji
- 314
- 3
- 13
9
votes
1 answer
How to use libraries in AIDE
I'm not very familiar with Gradle, but from what I understand you're supposed to be able to pull libraries straight from the internet? I've followed the project's directions, but got an error
Does AIDE not support remote maven repos? I confirmed…

ABP
- 115
- 1
- 1
- 8
9
votes
2 answers
Cloud-based Android Development
Can anyone recommend a good cloud-based IDE for Android development?
I use Eclipse/ADT on my desktop and AIDE on my Android devices, but it is a hassle to sync the two.
If there is not one available, would anyone recommend using AIDE's premium…

Matt Robertson
- 2,928
- 5
- 34
- 62
8
votes
1 answer
Why can I re-assign a new value to a final variable in Android AIDE?
How this is possible? How am I able to change variables marked as final?
public class Main
{
public static void main(String[] args)
{
final int NUM;
NUM = 22;
NUM = 33;
System.out.println(NUM);
}
}
I…

Muhammad Rokonuzzaman
- 131
- 2
- 7
6
votes
2 answers
How can I view AIDE warnings?
In the Android development app AIDE, how can I view the compiler warning messages? Previous versions displayed a yellow squiggly underline, which you could tap and a toast message would pop up. However, this doesn't happen any more.
For errors there…

intrepidis
- 2,870
- 1
- 34
- 36
6
votes
4 answers
How to get LibGDX gradled eclipse project to work on AIDE (Android IDE app)
I am trying to get libgdx gradle project to work on AIDE. AIDE is an app on android that acts like a IDE. It doesnt seems to work as the buildconfig.java does not have the package name generated. Anyone have any workaround?

thhVictor
- 338
- 6
- 25
5
votes
1 answer
How do I add Google Play Services to an AIDE project?
I develop solely in AIDE on my phone and tablet, and want to add Google Play Services.
Using this SDK Manager app (https://play.google.com/store/apps/details?id=com.rebellos.sdkmanager) I can see Google Play Services rev. 22. Is there any way I can…

user1910714
- 109
- 8
5
votes
1 answer
How can I debug an Android application using ADB/AM?
I am using AIDE as an Android IDE. This application built my project successfully and produced the corresponding APK file.
I would like to debug my project. Currently I:
open a terminal emulator
move to my android project (# not necessary action as…

bioinfornatics
- 1,749
- 3
- 17
- 36
3
votes
2 answers
Packaging error: java.lang.RuntimeException: yu: unknown tag byte: 12
So I'm currently trying to code a 1.16.4 Spigot plugin for minecraft in AIDE since my pc is broken and I have gotten no errors so far but once I run the program I get the build error:
packaging error java.lang.runtimeexception: yu: unknown tag byte:…

JacobMC
- 31
- 3
3
votes
1 answer
generic path for files
Im not sure what it is called but ill do my best to explain it. I did search here on stack exchange and found this answer for an allias for path but i dont want to set a variable for it and i already know that. create alias for path
What I need is…

Jason Lickliter
- 31
- 4
3
votes
1 answer
Multiple library projects in aide?
I am trying to work on my android app from my phone and tablet using Aide. I keep getting hundreds of errors. It seems as if it is only detecting one library project at a time. I can change which errors I get by removing a library and adding a…

Howler
- 2,252
- 6
- 22
- 27
2
votes
2 answers
Where to place the assets folder in AIDE?
I'm using AIDE (A code editor / IDE & compiler which runs on Android) to write an Android app, and I want to add some assets to my project, specifically a HTML file plus associated CSS and JavaScript files, to be displayed in a WebView.
I've put my…

Jonas Czech
- 12,018
- 6
- 44
- 65
2
votes
4 answers
AIDE "Unknown entity 'R'" Error with Android Studio App Project
I am trying to work on an Android App that I started writing with Android Studio using AIDE, but I have an issue with the project throwing an Unknown entity 'R' error in AIDE that I never saw in Android Studio. I would imagine that somehow, Android…

DaveTheMinion
- 664
- 3
- 22
- 45
2
votes
2 answers
Getting an error while using swipe menu ListView library
I use AIDE to code apps. I want to implement swipe menu ListView library link in my app. I added the dependency and XML Layout as said
But getting error at the line
listView.setMenuCreator(creator);
The error is no setMenuCreator() found
The…

user5524159
- 553
- 5
- 16