Android Development

johndoe1983

Senior Member
Joined
Jul 16, 2008
Messages
953
hey guys,

I'm working on a Android App... but as a newbie to development, I need someone to help me fix errors across the app.

I am looking for someone whose keen to make some extra money to help me fix/get this app up and running.

PM me if you're interested.
 

[)roi(]

Executive Member
Joined
Apr 15, 2005
Messages
6,282
If it's something you can share; the maybe use this thread to ask your questions; not all knowledge has to be paid for.
 

johndoe1983

Senior Member
Joined
Jul 16, 2008
Messages
953
current error when running:



Target device: emulator-5554
Installing APK: C:\App\Android Studio\App\build\outputs\apk\App-release-unsigned.apk
Uploading file to: /data/local/tmp/com.app
Installing com.app
DEVICE SHELL COMMAND: pm install -r "/data/local/tmp/com.app"
pkg: /data/local/tmp/com.app
Failure [INSTALL_FAILED_OLDER_SDK]


DEVICE SHELL COMMAND: pm uninstall com.app
DELETE_FAILED_INTERNAL_ERROR
 

koeksGHT

Dealer
Joined
Aug 5, 2011
Messages
11,857
current error when running:



Target device: emulator-5554
Installing APK: C:\App\Android Studio\App\build\outputs\apk\App-release-unsigned.apk
Uploading file to: /data/local/tmp/com.app
Installing com.app
DEVICE SHELL COMMAND: pm install -r "/data/local/tmp/com.app"
pkg: /data/local/tmp/com.app
Failure [INSTALL_FAILED_OLDER_SDK]


DEVICE SHELL COMMAND: pm uninstall com.app
DELETE_FAILED_INTERNAL_ERROR

Try remove app off phone from settings and try again.
 

[)roi(]

Executive Member
Joined
Apr 15, 2005
Messages
6,282
This line covers the issue: "Failure [INSTALL_FAILED_OLDER_SDK]
Basically the SDK version you have chosen for your project is newer than what your emulator supports.

android:minSdkVersion — The minimum version of the Android platform on which the application will run, specified by the platform's API Level identifier.
https://developer.android.com/studio/publish/versioning.html


To fix this either:
  • Use an emulator that supports this SDK version
  • or, change the minSdkVersion to a version that your emulator supports

https://medium.com/google-developer...n-minsdkversion-targetsdkversion-a098a0341ebd
 
Top