androidide_discussions | Unsorted

Telegram-канал androidide_discussions - AndroidIDE Discussions

3577

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/

Subscribe to a channel

AndroidIDE Discussions

Hmm
Solved by reset phone

Читать полностью…

AndroidIDE Discussions

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

Читать полностью…

AndroidIDE Discussions

I'm install androidide in my phone, but when i open it always force close

Читать полностью…

AndroidIDE Discussions

User عبدالمنعم has 1/2 warnings; be careful!

Читать полностью…

AndroidIDE Discussions

What's the cause of this problem?

Читать полностью…

AndroidIDE Discussions

Thanks 🙏 it is working

Читать полностью…

AndroidIDE Discussions

Same problem in my device

Читать полностью…

AndroidIDE Discussions

@abodinagdat16 starred AndroidIDEOfficial/AndroidIDE!

Читать полностью…

AndroidIDE Discussions

@M0Ghareeb starred AndroidIDEOfficial/AndroidIDE!

Читать полностью…

AndroidIDE Discussions

@HugoAk0 starred AndroidIDEOfficial/AndroidIDE!

Читать полностью…

AndroidIDE Discussions

Damn chronic headaches I want a solution

Читать полностью…

AndroidIDE Discussions

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?

Читать полностью…

AndroidIDE Discussions

@shov0n-mux starred AndroidIDEOfficial/termux-tools!

Читать полностью…

AndroidIDE Discussions

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

then you could start build in terminal just fine

Читать полностью…

AndroidIDE Discussions

Always download APKs from the "dev" branch.

Читать полностью…

AndroidIDE Discussions

Always download APKs from the "dev" branch.

Читать полностью…

AndroidIDE Discussions

2.6.1 is fine not force close but 2.7.0+ is close automatic

Читать полностью…

AndroidIDE Discussions

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.

Читать полностью…

AndroidIDE Discussions

Can someone please tell me how to change the default app icon? @admins

Читать полностью…

AndroidIDE Discussions

@Akyzariys starred AndroidIDEOfficial/AndroidIDE!

Читать полностью…

AndroidIDE Discussions

https://github.com/itsaky/AndroidIDE/releases/tag/v2.7.1


This is the only solution that works.

Читать полностью…

AndroidIDE Discussions

Same happening with me

Читать полностью…

AndroidIDE Discussions

#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?

Читать полностью…

AndroidIDE Discussions

Same with me
My Android is 15 and today AndroidIDE is not working it is automatically closed

Читать полностью…

AndroidIDE Discussions

I have that error too, help.

Читать полностью…

AndroidIDE Discussions

@ym2632600 starred AndroidIDEOfficial/AndroidIDE!

Читать полностью…

AndroidIDE Discussions

@shov0n-mux starred AndroidIDEOfficial/AndroidIDE!

Читать полностью…

AndroidIDE Discussions

Click on the button to see the chat rules!

Читать полностью…

AndroidIDE Discussions

@Niheng04 starred AndroidIDEOfficial/AndroidIDE!

Читать полностью…

AndroidIDE Discussions

Replace
apply plugin: ...

with the plugins block in your modules.

For example, if you have :

apply plugin: "com.android.application"


Replace it with :

plugins {
id("com.android.application")
}

Читать полностью…
Subscribe to a channel