Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flathub/com.google.androidstudio
https://github.com/flathub/com.google.androidstudio
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/flathub/com.google.androidstudio
- Owner: flathub
- Created: 2018-01-12T12:58:53.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-09-08T17:55:08.000Z (4 months ago)
- Last Synced: 2024-09-08T19:27:10.303Z (4 months ago)
- Homepage: https://flathub.org/apps/details/com.google.AndroidStudio
- Size: 250 KB
- Stars: 37
- Watchers: 6
- Forks: 23
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Android Studio Flatpak wrapper
This is a community made Flatpak wrapper of Android Studio, it's not verified by, affiliated with, or supported by Google.
This wrapper uses x11 or xwayland due to openJDK missing support. Filesystem visibility is voluntarily limited to home and flatpak-spawn not permitted due to security reason.Any suggestions, problem reports or improvement proposals are welcome.
## Android Udev rules
Many systems need UDEV rules to handle USB devices, we suggest these [android-udev-rules](https://github.com/M0Rf30/android-udev-rules)## ADB systemd service
If you want to start ADB Server Daemon on user login (and not on Android Studio boot) this is a systemd service example.
To disable management by Android studio go to `Settings`, `Build, Execution, Deployment`, `Debugger`, `ADB server lifecycle management` and select `Use existing manually managed server````
[Unit]
Description=Android Debug Server Daemon[Service]
Type=forking
ExecStart=%h/android/sdk/platform-tools/adb start-server
ExecStop=%h/android/sdk/platform-tools/adb kill-server[Install]
WantedBy=default.target
```