Official Telegram group of AndroidIDE to discuss issues, requests and suggestions. We use GitHub to manage requests, features and suggestions. GitHub: https://github.com/AndroidIDEOfficial/AndroidIDE Website: https://androidide.com/
List of notes in AndroidIDE Discussions:
- cpaapt
- customgradle
- decreasexmx
- docs
- gradleplugin
- init_script_issue
- manualsetup
- reactnative
- setupcmdline
- setupndk
- setuproom
- specbuildtools
- upgradle
- usedev
- usepluginsblock
You can retrieve these notes by using /get notename
, or #notename
I'm install androidide in my phone, but when i open it always force close
Читать полностью…User عبدالمنعم has 1/2 warnings; be careful!
Читать полностью…⭐ @abodinagdat16 starred AndroidIDEOfficial/AndroidIDE!
Читать полностью…⭐ @M0Ghareeb starred AndroidIDEOfficial/AndroidIDE!
Читать полностью…⭐ @HugoAk0 starred AndroidIDEOfficial/AndroidIDE!
Читать полностью…Hi androidide was working fine yesterday but after updating my phone's security patch it is not opening. It crashing all time. Can someone tell me what is happening?
Читать полностью…⭐ @shov0n-mux starred AndroidIDEOfficial/termux-tools!
Читать полностью…Try copy aapt2 binary from by your architecture armv7 https://github.com/AndroidIDEOfficial/androidide-tools/releases/download/v34.0.4/build-tools-34.0.4-arm.tar.xz
Or aarch64
https://github.com/AndroidIDEOfficial/androidide-tools/releases/download/v34.0.4/build-tools-34.0.4-aarch64.tar.xz
and replace it from $HOME/.androidide/aapt2
after replacing it, run this
echo 'android.aapt2FromMavenOverride=/data/data/com.itsaky.androidide/files/home/.androidide/aapt2' > $HOME/.gradle/gradle.properties
Always download APKs from the "dev" branch.
Читать полностью…Always download APKs from the "dev" branch.
Читать полностью…2.6.1 is fine not force close but 2.7.0+ is close automatic
Читать полностью…1. Start of Gradle Daemon
A daemon process is started to speed up builds. The daemon log is saved in an internal system path.
2. Dependency Downloading
Gradle tries to download many dependencies from remote repositories (such as Maven Central, Google, and a snapshot repository from Sonatype).
3. "Resource missing" Errors
Many dependencies are not found in the specified repositories. This may be due to:
Unstable or snapshot versions that are no longer available.
Misconfigured or inaccessible repositories.
Obsolete or incorrectly defined dependencies in the build.gradle file.
4. Very Detailed Logging Level (debug)
The log shows a lot of technical information (debug level), which can make it hard to read and result in very large logs.
Recommendations for Improvement and Fixes
1. Adjust Gradle Logging Level
To avoid so much unnecessary information, you can configure a less detailed log level:
In the gradle.properties file, add or modify this line:
org.gradle.logging.level=info
Or when running Gradle, use:
./gradlew build --info
or for less output:
./gradlew build --quiet
This will make the logs more readable and shorter.
2. Review and Correct Dependencies and Repositories
Check that your build.gradle file has the repositories correctly configured:
repositories {
google()
mavenCentral()
// Avoid using snapshot repositories unless necessary
}
Replace snapshot or alpha versions with stable versions if possible. For example, avoid using versions like 7.0.0-alpha03 or 2.7.1-beta-f5231daa5-SNAPSHOT unless you really need those versions.
If you're using snapshot versions, make sure the remote repository is active and accessible.
3. Clean Old Daemon Logs
Gradle daemon logs can take up space. You can delete them manually from the path shown in the log:
/data/data/com.itsaky.androidide/files/home/.gradle/daemon/<version>/
Delete files like daemon-*.out.log that you no longer need.
4. Check Internet Connection and Repository Access
Make sure the device or environment where you're building has a stable internet connection and can access the Maven and Google repositories.
Summary
Adjust the log level to make it less verbose.
Use stable versions of dependencies and official repositories.
Clean up old logs to free space.
Check connection and repository configuration.
Can someone please tell me how to change the default app icon? @admins
Читать полностью…⭐ @Akyzariys starred AndroidIDEOfficial/AndroidIDE!
Читать полностью…https://github.com/itsaky/AndroidIDE/releases/tag/v2.7.1
This is the only solution that works.
#oot
Does anyone have experience building ninja from source for android? Does the circled error affect the resulting ninja binary? Or is it just a test before building?
Same with me
My Android is 15 and today AndroidIDE is not working it is automatically closed
⭐ @ym2632600 starred AndroidIDEOfficial/AndroidIDE!
Читать полностью…⭐ @shov0n-mux starred AndroidIDEOfficial/AndroidIDE!
Читать полностью…Click on the button to see the chat rules!
Читать полностью…⭐ @Niheng04 starred AndroidIDEOfficial/AndroidIDE!
Читать полностью…Replace apply plugin: ...
with the plugins block in your modules.
For example, if you have :
apply plugin: "com.android.application"
plugins {
id("com.android.application")
}
Читать полностью…