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
0
votes
1 answer
Automatically install app on run from AIDE
Is it possible to automatically install an app when testing and running from AIDE? It keeps asking me whether I want to install it or not.

Z0q
- 1,689
- 3
- 28
- 57
0
votes
1 answer
Why is GitHub causing me pain?
Ok I'm having this issue. I pushed (fresh repo) my Android app to my repo on Github from Android Studio. I then pulled it from AIDE on my tablet. I received no errors, even after pulling, from Android Studio. However, when I use AIDE I get errors…

c0dezer019
- 188
- 2
- 12
0
votes
1 answer
How do I add Crashlytics to AIDE?
I use AIDE while on the go. On Android Studio I added Crashlytics to my project but upon moving it over to AIDE,it doesn't seem to recognize Crashlytics. Specifically, this line is specified as an unknown dependant according to compile…

c0dezer019
- 188
- 2
- 12
0
votes
2 answers
Building Android application inside android OS
Im curious to know the what steps/tools need to build an android app from source code to apk inside android (i.e. inside an android powered smartphone).
Im actually curious how AIDE works. They give a whole integrated development environment as an…

IronBlossom
- 3,898
- 3
- 35
- 42
0
votes
1 answer
How to add STL support in AIDE
I try to use the STL But it says string: no such file or directory
Application.mk
APP_STL := stlport_static
LOCAL_CPPFLAGS := -std=c++11
Android.mk
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
APP_ABI:=all
LOCAL_MODULE :=…

BucketLava
- 15
- 6
0
votes
1 answer
Can i access aide android sdk installation path?
i have some problems using default sdk icons where i get "recource not found" errors for definitions as "@android:drawable/ic_action_delete". I want to check the resource names from the sdk folder. Is it possible to access the sdk installation…

adugan
- 3
- 2
0
votes
5 answers
aapt: res/layout/MainActivity.java Invalid file name
I use AIDE to compile android applications from inside Android. Usually, I copy the MainActivity.java to the computer, I edit it and then I copy it again to the mobile phone. Then, I run AIDE to compile the project. At this moment, I have this error…
0
votes
1 answer
Android admob with AIDE
I'm trying to incorporate ads into my app with a program called AIDE. It's an IDE on mobile phone. When I'm doing that I'm getting an error with the meta data.
no resources found that match the value at value…

baron dune
- 387
- 1
- 5
- 23
0
votes
1 answer
accessing private variables in JAVA (AIDE)
class a{
private int i=100;
a(){
//this.i=5;
}
}
class b extends a {
b( ){
//super.i=10;
a a = new a();
System.out.println(super.i);
}
}
class c {
public static void main(String [] args){
b b = new…

saurabh kumar
- 155
- 5
- 26
0
votes
1 answer
Compile error with two different fragmenttransaction types
I'm using AIDE on my phone, and trying to open a fragment from the navigation drawer in-app, but I get this error when I try to build the app:
An instance of type 'android.app.fragmenttransaction' cannot be assigned to a variable of type…

user3826475
- 1
- 2
0
votes
2 answers
AIDE: No access to variable C and Understanding Default Code?
I am pretty new to this but I have a couple of questions which may seem silly but I would really appreciate an answer. They are located right below the code block.
package com.mycompany.myapp;
import android.app.*;
import android.os.*;
import…

Howcan
- 313
- 3
- 5
- 16
0
votes
1 answer
Sneaky Java cast
In Java (Android) I had some code which looked like this:
for (Tuple tuple : xRange) {
Tuple5 t = (Tuple5)tuple;
...
}
Which can be a pain to write. By the…

intrepidis
- 2,870
- 1
- 34
- 36
0
votes
2 answers
Compiling game with Android Studio lags a lot
I have a really strange problem. When I use my phone, with the 'AIDE' app, to compile my game, it runs smooth at 60fps, but then, when I use Android Studio to compile, it runs at max 40fps, and gets reaaaally laggy.
I'm using the exact same code,…

GuiceU
- 1,030
- 6
- 19
- 35
0
votes
2 answers
android:style value not found error in eclipse
I have the following line of code in my manifest.xml
android:theme="@android:style/Theme.Holo.Light"
I have developed my app primarily using AIDE, and in AIDE, this line runs fine(compiles and works). However, the other day I moved my app to…

jcw
- 5,132
- 7
- 45
- 54
0
votes
0 answers
How Should I Handle Multiple Locations for a Library Project in Android?
I'm developing an open source Android app. I'd like to use multiple development platforms. The first is my Gentoo box, where I use ant and emacs for development (because I've used emacs for years and Gentoo currently lacks support for a version of…

Trebor Rude
- 1,904
- 1
- 21
- 31