aide-ide

How to get LibGDX gradled eclipse project to work on AIDE (Android IDE app)

牧云@^-^@ 提交于 2019-12-23 09:37:48
问题 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? 回答1: Ok, I've got my project compiling. What I did was... Created a new LibGDX project under AIDE. Left all the folder names as they were. i.e. gdx-game, gdx-game-android. Using adb I pushed all my files into these respective folders. e.g. core = gdx-game, android = gdx

How to use libraries in AIDE

醉酒当歌 提交于 2019-12-17 22:54:38
问题 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 that the library in question does exist on the jcenter website. I'm not sure how to make a local maven repository. I tried to download the relevant files from jcenter and put them in .../maven-repo/com/melnykov/floatingactionbutton/1.0.3 and point

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

戏子无情 提交于 2019-12-12 02:56:24
问题 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 Studio, causing conflicts that can only be resolved by adding and removing import statements for the R class depending upon which IDE I am using. While I could do this, I would rather change the structure the Android Studio uses to generate this

Andengine compilation error using the cloned Git repo in AIDE

南笙酒味 提交于 2019-12-11 11:51:45
问题 I am using AIDE to code an Android game and I want to use Andengine to code my game. I heard that it is recommended to clone the git repository since the maker doesn't compile Java Archive(JAR) files anymore. However, when I clone the git repo and try to compile a simple Andengine project I get errors saying that there is a "compilation error in x86". This means that my only option is to use the older, outdated JAR files. Does anyone know how to solve this problem? 回答1: Copied shamelessly

Opencv library on AIDE

天大地大妈咪最大 提交于 2019-12-11 03:25:48
问题 I'm new with android programming and I want to code and compile an app based on opencv library and I want to do that from my tablet using AIDE, but I don't know how to setup opencv library in AIDE. Can anyone help me? 回答1: Go download the .jar (link to Java2). Create a libs folder in your app's directory and put the jar in it. Then go back to AIDE, open your project and navigate to the libs folder. Long press the jar. When the dialogue pops up asking if you what to do click "add library to

Android app with specific package name cannot install

为君一笑 提交于 2019-12-08 03:31:07
问题 Problem I am developing an Android app and for some reason I have the "App not installed" error when trying to install the package on my Android device. This application has already previously been installed successfully. To investigate, I went for the basics: Uninstall my app from the device Make sure Security>Unknown Source is checked Created an HelloWorld app with random package name and tried to install on device: SUCCESS Created an HelloWorld app with same package name as my problematic

Android app with specific package name cannot install

情到浓时终转凉″ 提交于 2019-12-06 15:24:30
Problem I am developing an Android app and for some reason I have the "App not installed" error when trying to install the package on my Android device. This application has already previously been installed successfully. To investigate, I went for the basics: Uninstall my app from the device Make sure Security>Unknown Source is checked Created an HelloWorld app with random package name and tried to install on device: SUCCESS Created an HelloWorld app with same package name as my problematic project: FAILED So my guess is that my package name is pointing to some stuff that was not uninstalled

AIDE “Unknown entity 'R'” Error with Android Studio App Project

我们两清 提交于 2019-12-06 09:17:36
问题 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 Studio uses Gradle to manage this and prevent this from being an issue, but since AIDE does not support Gradle, the project does not function properly. What must I do to make the project work in AIDE while still maintaining compatibility with

AIDE “Unknown entity 'R'” Error with Android Studio App Project

守給你的承諾、 提交于 2019-12-04 16:50:01
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 Studio uses Gradle to manage this and prevent this from being an issue, but since AIDE does not support Gradle, the project does not function properly. What must I do to make the project work in AIDE while still maintaining compatibility with Android Studio? This seems to be an issue that others have experienced, but I have been unable to find a

How to use libraries in AIDE

一世执手 提交于 2019-11-28 20:52:53
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 that the library in question does exist on the jcenter website. I'm not sure how to make a local maven repository. I tried to download the relevant files from jcenter and put them in .../maven-repo/com/melnykov/floatingactionbutton/1.0.3 and point AIDE to .../maven-repo in the settings, but that did nothing. FD_ Note: AIDE now supports remote maven