Questions tagged [aide-ide]

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

98 questions
0
votes
4 answers

Java generics warning requiring guru meditation

I have some Java code like the following snippet (the example is simplified from the original code). A yellow squiggle and warning message appear, as indicated by the code comment below. The message is: "This method invocation is unsafe since the…
intrepidis
  • 2,870
  • 1
  • 34
  • 36
0
votes
1 answer

The '>' operator can not be applied to instances of type 'int' and 'int'

I am getting the error in the title when I try and compile the below code as part of an app in AIDE. The code below is from Apache WordUtils (I don't want to import a whole library for a single thing), but I also get the error in other code. It used…
beewall
  • 131
  • 1
  • 10
0
votes
3 answers

AIDE IDE errors not going away even after deleting full line

I'm working on an Android project. I started it in Android Studio, then moved it to Github and cloned the repo using the AIDE IDE. After opening the Project, I got an error in the build.gradle file. I deleted the whole line of code, because I wasn't…
Ale-Jandra
  • 83
  • 5
0
votes
3 answers

Trouble with ID in AIDE

I'm writing a simple Android App using AIDE (Android IDE). I gave one of my layout elements an ID, but when I try to access the element using findViewById(), I get an error tht says: "Unknown member 'id' of 'com.mycompany.mailscomunes.R'. I haven't…
Larpee
  • 800
  • 1
  • 7
  • 18
0
votes
2 answers

Upgrading the build.gradle of the android app(AIDE)

i am using an android app called AIDE to build android apps, how do i get to upgrade its gradle as the current version that I am using is Here classpath 'com.android.tools.build:gradle:1+ and I would like to upgrade to the latest version…
Nono
  • 25
  • 7
0
votes
1 answer

How to access browser console in AIDE for error checking

Is there an equivalent of the browser console in AIDE? It took me trial and error to find out that it doesn't seem to support local storage (or at least the library that I'm usings implementation of it) Should I wrap everything in one big try Catch…
James W
  • 410
  • 2
  • 10
0
votes
1 answer

How to import project from git in AIDE?

I've created private repo on bitbucket and added public key from PuTTY Key Generator. Using TortoiseGIT I've managed to push my project from PC and then I wanted to pull it from AIDE. So I've created .ssh folder on /sdcard and made sure that this…
Kamil
  • 1,456
  • 4
  • 32
  • 50
0
votes
2 answers

How to best do this in android?

I am thinking of making an app that interacts with a Web API. Requirement: Start the bet and Display notification Send the bet to the site via POST. When the result arrives, update UI with the result. If the user hasn't pressed the stop button,…
Karyuu Ouji
  • 314
  • 3
  • 13
0
votes
2 answers

OpenCV android sdk error

I am using opencv library but javacameraview layout giving this error aapt:Error parsing XML:unbound prefix This occurs at
user5766922
0
votes
1 answer

opengl es 3.0 in AIDE-ide - render to texture returns blank texture

Ultimate goal is GPU image processing (color quantumization, pixel sorting, connected component analysis) using ping pong method with two textures attached to the same framebuffer. I've looked at other threads, completed my textures, checked for…
deasmhumnha
  • 456
  • 4
  • 12
0
votes
1 answer

Android AIDE, logcat scrolling on runtime error

On every runtime error in AIDE (when the application crashes) the logcat window is displaying all messages again (even from the last days) which needs long time to scroll to the end to find out what's wrong. I don't want always clear the logcat list…
newUser
  • 37
  • 10
0
votes
1 answer

AIDE doesn't recognise colorPrimary

Using AIDE on phone to create apps... Dont know why but AIDE doesn't recognise the colorPrimary & colorPrimaryDark... throws error like 'No Resource Found' I am currently able to change the ActionBar color by this Code - `
user6330086
0
votes
1 answer

"Unexpected end of declaration" when dealing with 2D arrays

I have a LibGDX project on my desktop that compiles and runs fine. I imported this project to my phone to use with AIDE-ide and suddenly I have hundreds of errors. I found that any time I use a 2-dimensional array of any sort, the "Unexpected end of…
0
votes
1 answer

Android error : appt exited with code 11 on adding new dependency to build.gradle

I am usuing aide to learn and develop android app. Recently i have been facing this error ;: appt exited with code 11 when i add any new dependency to my build.gradle I have added already 9 dependencues and this error is getting displayed for the…
user5894647
  • 544
  • 6
  • 15
0
votes
0 answers

Change Structure used by Android Studio to Create the 'gen' Folder

I am writing an Android app that was started in Android Studio, but I would like to be able to work on the app using AIDE as well, but the structure used by AIDE to generate the 'gen' folder (where the R class is stored) is different from Android…
DaveTheMinion
  • 664
  • 3
  • 22
  • 45