Till now my customer was using an old mobile with 4.4 android version. I didn't have any problems with my application. Since my customer has changed the mobile in a new Galaxy j5 (2017) with Android version 7.0 Nougat. After that, the application in the android throw black screens in random places and it kicks out my application with message application doesn't respond. I cant find where is the problem and why this happens. Should I change my 'target Android version' in Android 7.0? Till now I'm using 'Use Compile Using SDK version.' Or new mobile is defective?
Here is my XML File
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="WiOrderAndroid.WiOrderAndroid" android:versionCode="1" android:versionName="1.0" android:installLocation="auto">
<uses-sdk android:minSdkVersion="16" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<application android:label="WiOrder" android:icon="@drawable/xs" android:theme="@style/CustomActionBarTheme"></application>
</manifest>