About 24,300,000 results
Open links in new tab
  1. Create and export .apk file using Android studio - Stack Overflow

    Jan 2, 2022 · I've created an Android app, I want to export it as .apk file so that I can share it with others, can anyone tell me how to create and share .apk file? Using Android Studio.

  2. How to export my Android Studio project as an APK file?

    Nov 17, 2021 · I need to export my Android Studio project as an APK for a college project. What is the correct procedure to do so?

  3. How to build a 'release' APK in Android Studio? - Stack Overflow

    I am trying to build an APK that I can upload to the Play Store. When I select Build|Generate Signed APK... in Android Studio (version 0.3.1), I am directed to a link on how to properly set up the signing …

  4. How to create apk file for android? - Stack Overflow

    May 12, 2016 · 6 If you like to release your app to the public, here you can find step by step info on how to do it. Include how to create the apk file, from the link: To create a signed and aligned .apk in …

  5. Android: how to mark my app as debuggable? - Stack Overflow

    Apr 17, 2019 · By putting android:debuggable="true" in your manifest file, application will go in debug mode, that means android will manage all logs file regarding your application. But make sure put it …

  6. How do I get the APK of an installed app without root access?

    I'm trying to extract the APK file of an installed Android app WITHOUT root permissions. I thought that this was impossible, because all APK files for non-system-apps are located in /data/app, and …

  7. How can I compile an APK from a GitHub source - Stack Overflow

    Jan 26, 2016 · And add the jdk path as JAVA_HOME in environmental variable. And install your android studio. Then open the android studio and import downladed repo earlier. Android studio will resolve …

  8. android - React Native Expo create apk - Stack Overflow

    Jan 15, 2024 · 9 use npx expo prebuild to generate android folder go inside that folder and run: ./gradlew assembleRelease: to create .apk. ./gradlew bundleRelease: to create .aab.

  9. React Native: Generate .apk and .ipa using Expo

    0 You can build apk locally without using eas: Run npx expo run:android --variant release and the apk will be in android\app\build\outputs\apk\release. Alternately, you can use android studio: Run npx …

  10. Generate an APK file from an AAB file (Android app bundle)

    Oct 29, 2018 · Is there a way to generate an APK file from an Android Application Bundle (AAB) via Terminal or using Android Studio?