i want make android project which must be run in below API level 14, is it possible? how can we create emulator its? now, i'm not able to do this, if you have any idea share with me.
Asked
Active
Viewed 231 times
0
-
Search on google. – IntelliJ Amiya Feb 23 '18 at 06:29
-
do you have any idea about it? – Sanjay Feb 23 '18 at 06:42
1 Answers
1
- Yes, you can make an Android project which must be run in below API level 14:
Step1: Create a normal project using Android Studio (MinSDK: 15)
Step2: Update your build.gralde: minSDKVersion to lower than 14 (i.e: 9), targetSDKVersion to 14 and compileSDKVersion to 14:
Later, you have to remove other stuffs like Themes, support library, etc.

Cao Minh Vu
- 1,900
- 1
- 16
- 21
-
Yes, just remove them. And your Activity should extends Activity, not extends AppCompatActivity anymore – Cao Minh Vu Feb 23 '18 at 09:44
-
-
and when we go to create emulator below 14 all are showing deprecated , so how can i download it, i have same issue before some day – oo7 Feb 23 '18 at 09:49
-
AppCompat libraries use some classes, methods which are available on API > 14 only, hence, they should be removed. You can google to download emulator images. I.e https://software.intel.com/en-us/android/articles/android-237-gingerbread-x86-emulator-system-image – Cao Minh Vu Feb 23 '18 at 09:56