/ / Android एप्लिकेशन को टेबलेट के लिए डिज़ाइन किया गया दिखाएं - Android, cordova, google-play

टैबलेट के लिए डिज़ाइन किए गए एंड्रॉइड ऐप को दिखाएं - एंड्रॉइड, कॉर्डोवा, google-play

प्लेस्टोर पर मेरे पास एक कॉर्डोवा ऐप है लेकिन ऑप्टिमाइज़ेशन टिप्स में यह दिखा रहा है कि ऐप टैबलेट के लिए डिज़ाइन नहीं किया गया है। मैंने "चारों ओर देखा और बदल दिया। <supports-screens> टैग लेकिन यह अभी भी काम नहीं कर रहा है और मैं अभी भी अनुकूलन टिप प्राप्त कर रहा हूं।

यहाँ प्रकट फ़ाइल है:

<?xml version="1.0" encoding="utf-8"?>
<manifest android:versionCode="11"
android:versionName="$BundleVersion$"
package="$AppIdentifier$"
android:windowSoftInputMode="adjustPan"
android:hardwareAccelerated="$AndroidHardwareAcceleration$"
xmlns:android="http://schemas.android.com/apk/res/android" >
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:xlargeScreens="true"
android:resizeable="true"
android:anyDensity="true"
/>

<application android:label="@string/app_name"
android:icon="@drawable/icon"
android:hardwareAccelerated="$AndroidHardwareAcceleration$">
<activity android:label="@string/app_name"
android:name=".TelerikCallbackActivity"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale"
android:launchMode="standard"
android:theme="@android:style/Theme.Black.NoTitleBar" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:targetSdkVersion="14" />
</manifest>

और यहाँ विन्यास फाइल है:

<cordova>

<content src="index.html" />

<preference name="useBrowserHistory" value="true" />
<preference name="exit-on-suspend" value="false" />
<preference name="fullscreen" value="true" />
<preference name="permissions" value="none"/>

<plugins>
<plugin name="App" value="org.apache.cordova.App"/>
<plugin name="Device" value="org.apache.cordova.Device"/>
</plugins>
</cordova>

टेबलेट के लिए ऐप उपलब्ध कराने के लिए मुझे क्या करने की आवश्यकता है?

उत्तर:

जवाब के लिए 3 № 1

आपको जो चाहिए वह "कोड-आधारित उत्तर" नहीं है।

यदि Google टैबलेट के लिए भी है तो Google Play आपकी अपलोड की गई जानकारी की समीक्षा करेगा।

जिसमें नीचे की चीजें शामिल होनी चाहिए।

(1) टैबलेट स्प्लैश स्क्रीन के साथ ऐप

(2) टैबलेट आइकन के साथ ऐप

(3) टेबलेट स्क्रीन के लिए कॉन्फ़िगरेशन। (आपने इसे अपने प्रश्न के अनुसार निर्धारित किया है)

(4) गोलियों के लिए सूचना। (स्क्रीनशॉट, प्रचार चित्र आदि)