Import SDK from a published app in Studio.

0 votes
asked by about Android Studio
edited by

I have published an app via the developer console, would like to import this app in Studio. How can I do this?

1 Answer

0 votes
No avatar answered by (329k points)

Theoretically, you will have to create a new project, then paste the folder with your app into the project folder and modify the settings file.

I believe you need to edit the settings.gradle file and add the project name like:

include ':appname', ':helloworldapp'

then modify the build.gradle to include dependencies:

dependencies {
    compile project(':appname')
    compile 'com.android.support:appcompat-v7:+'
}

Note: Modify it based on your app name, compatibility support, libraries, etc.

Additionally, use the User Guide available online to learn how to work with Android Studio: https://developer.android.com/studio/intro/index.html

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
To avoid this verification in future, please log in or register
...