kvdroid / Kvdroid

Some Pyjnius tools for Kivy-Android developments.
MIT License
95 stars 24 forks source link

AttributeError: 'android.content.pm.PackageInfo' object has no attribute 'getLongVersionCode' #63

Closed Sahil-pixel closed 4 months ago

Sahil-pixel commented 4 months ago

Working fine in Android 13 but showing error in old android .

package_info() on Android 8 i was testing in Android device SDK 26

AttributeError: 'android.content.pm.PackageInfo' object has no attribute 'getLongVersionCode'

kengoon commented 4 months ago

@Sahil-pixel the method was added in Android api version 28, so that's why it throws the error. I will go ahead and put an if guard to check for API 28

Sahil-pixel commented 4 months ago

Ok. Please update it