I extracted a game from my android mobile using APK extractor. I wanted to get my hands dirty with the code by opening the file in Android Studio, but i am unable to run the apk file.
I did add "Gradle" to the project module and it failed with message "The project 'Candy Crush Saga_com.king.candycrushsaga' is not a Gradle-based project".
When I tried run the apk file without "Gradle" I am hitting the error "Error: Please select Android SDK". Can anyone guide me on how to make this apk run ?
excerpts from androidmanifest.xml file
xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="1137101"
android:versionName="1.137.1.1"
android:installLocation="0"
package="com.king.candycrushsaga">
<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="26" />