Fandi Susanto
2018-06-07 10:06:25 UTC
Sorry for the late reply.
The problem has been resolved.
The problem was the camera feature. I changed:
On Tue, Jun 5, 2018 at 12:18 AM, 'Dan Albert' via android-ndk <
The problem has been resolved.
The problem was the camera feature. I changed:
On Tue, Jun 5, 2018 at 12:18 AM, 'Dan Albert' via android-ndk <
Why is your maxSdkVersion 18? That means your app will not be allowed to
run on 19+ (KitKat or newer).
You received this message because you are subscribed to the Google Groups
"android-ndk" group.
To unsubscribe from this group and stop receiving emails from it, send an
Visit this group at https://groups.google.com/group/android-ndk.
To view this discussion on the web visit https://groups.google.com/d/
msgid/android-ndk/CAFVaGhsKLdLigyKzgOan1Fc9nepiq
OVZRpL6Yc5NVfsiWPVJxQ%40mail.gmail.com
<https://groups.google.com/d/msgid/android-ndk/CAFVaGhsKLdLigyKzgOan1Fc9nepiqOVZRpL6Yc5NVfsiWPVJxQ%40mail.gmail.com?utm_medium=email&utm_source=footer>
.
For more options, visit https://groups.google.com/d/optout.
run on 19+ (KitKat or newer).
Hi. I've just published my app.
Your device isn't compatible with this version
I Suspect that this is true for every device.
1. SDK version declaration (the androidmanifest and build.gradle problem)
2. android:required=true on camera2
3. I copy images directly to drawable folder and use it directly from
there (i resize images programatically)
Please help me so users can find, download and install my app from google
playstore.
Below are my androidmanifest and build.gradle files.
Thanks
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.icodeformoney.klinik">
<uses-feature
android:name="android.hardware.camera2"
android:required="true" />
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:maxSdkVersion="18" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<application
android:allowBackup="true"
android:supportsRtl="true"
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:xlargeScreens="true"
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.icodeformoney.klinik"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
</provider>
<activity
android:name=".MainActivity"
android:configChanges="orientation|screenSize"
android:screenOrientation="fullSensor"
<activity
android:name=".Splash"
android:configChanges="orientation|screenSize"
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".Settings2"></activity>
</application>
</manifest>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.icodeformoney.klinik">
<uses-feature
android:name="android.hardware.camera2"
android:required="true" />
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:maxSdkVersion="18" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<application
android:allowBackup="true"
android:supportsRtl="true"
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:xlargeScreens="true"
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.icodeformoney.klinik"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
</provider>
<activity
android:name=".MainActivity"
android:configChanges="orientation|screenSize"
android:screenOrientation="fullSensor"
<activity
android:name=".Splash"
android:configChanges="orientation|screenSize"
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".Settings2"></activity>
</application>
</manifest>
--
You received this message because you are subscribed to the Google Groups
"android-ndk" group.
To unsubscribe from this group and stop receiving emails from it, send an
Visit this group at https://groups.google.com/group/android-ndk.
To view this discussion on the web visit https://groups.google.com/d/
msgid/android-ndk/8c83310f-5352-41cc-8640-1d08b7297865%40googlegroups.com
<https://groups.google.com/d/msgid/android-ndk/8c83310f-5352-41cc-8640-1d08b7297865%40googlegroups.com?utm_medium=email&utm_source=footer>
.
For more options, visit https://groups.google.com/d/optout.
--Your device isn't compatible with this version
I Suspect that this is true for every device.
1. SDK version declaration (the androidmanifest and build.gradle problem)
2. android:required=true on camera2
3. I copy images directly to drawable folder and use it directly from
there (i resize images programatically)
Please help me so users can find, download and install my app from google
playstore.
Below are my androidmanifest and build.gradle files.
Thanks
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.icodeformoney.klinik">
<uses-feature
android:name="android.hardware.camera2"
android:required="true" />
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:maxSdkVersion="18" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<application
android:allowBackup="true"
android:supportsRtl="true"
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:xlargeScreens="true"
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.icodeformoney.klinik"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
</provider>
<activity
android:name=".MainActivity"
android:configChanges="orientation|screenSize"
android:screenOrientation="fullSensor"
<activity
android:name=".Splash"
android:configChanges="orientation|screenSize"
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".Settings2"></activity>
</application>
</manifest>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.icodeformoney.klinik">
<uses-feature
android:name="android.hardware.camera2"
android:required="true" />
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:maxSdkVersion="18" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<application
android:allowBackup="true"
android:supportsRtl="true"
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:xlargeScreens="true"
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.icodeformoney.klinik"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
</provider>
<activity
android:name=".MainActivity"
android:configChanges="orientation|screenSize"
android:screenOrientation="fullSensor"
<activity
android:name=".Splash"
android:configChanges="orientation|screenSize"
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".Settings2"></activity>
</application>
</manifest>
--
You received this message because you are subscribed to the Google Groups
"android-ndk" group.
To unsubscribe from this group and stop receiving emails from it, send an
Visit this group at https://groups.google.com/group/android-ndk.
To view this discussion on the web visit https://groups.google.com/d/
msgid/android-ndk/8c83310f-5352-41cc-8640-1d08b7297865%40googlegroups.com
<https://groups.google.com/d/msgid/android-ndk/8c83310f-5352-41cc-8640-1d08b7297865%40googlegroups.com?utm_medium=email&utm_source=footer>
.
For more options, visit https://groups.google.com/d/optout.
You received this message because you are subscribed to the Google Groups
"android-ndk" group.
To unsubscribe from this group and stop receiving emails from it, send an
Visit this group at https://groups.google.com/group/android-ndk.
To view this discussion on the web visit https://groups.google.com/d/
msgid/android-ndk/CAFVaGhsKLdLigyKzgOan1Fc9nepiq
OVZRpL6Yc5NVfsiWPVJxQ%40mail.gmail.com
<https://groups.google.com/d/msgid/android-ndk/CAFVaGhsKLdLigyKzgOan1Fc9nepiqOVZRpL6Yc5NVfsiWPVJxQ%40mail.gmail.com?utm_medium=email&utm_source=footer>
.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "android-ndk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to android-ndk+***@googlegroups.com.
To post to this group, send email to android-***@googlegroups.com.
Visit this group at https://groups.google.com/group/android-ndk.
To view this discussion on the web visit https://groups.google.com/d/msgid/android-ndk/CAFhURFMwrrSz2%2BanOQ%2BTT2-f%2B%2BvJrpXXXei0M0NStbyjSmayvA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
You received this message because you are subscribed to the Google Groups "android-ndk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to android-ndk+***@googlegroups.com.
To post to this group, send email to android-***@googlegroups.com.
Visit this group at https://groups.google.com/group/android-ndk.
To view this discussion on the web visit https://groups.google.com/d/msgid/android-ndk/CAFhURFMwrrSz2%2BanOQ%2BTT2-f%2B%2BvJrpXXXei0M0NStbyjSmayvA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.