-2

API 8以降のすべてのAndroidデバイスで実行するapkを作成しました。すべてのAPIについてエミュレーターでテストしたところ、正常に機能しました。ただし、apkをGoogle Playに配置した後、HoneyCombとICSの一部のユーザーはAPKが実行されていないと不満を漏らしました。これがGooglePlayの私のapkへのリンクです:https ://play.google.com/store/apps/details?id = designtec.android.rss

そして、これが私のマニフェストファイルです:

<?xml version="1.0" encoding="UTF-8"?>
<manifest android:versionCode="1" android:versionName="1.0"
package="designtec.android.rss" xmlns:android="http://schemas.android.com/apk/res/android">
<uses-sdk android:minSdkVersion="8"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application android:icon="@drawable/iatec" android:label="@string/app_name">
    <activity android:label="@string/app_name" android:name="Main" android:theme="@android:style/Theme.NoTitleBar">
        <intent-filter>
            <action android:name="android.intent.action.MAIN"/>
            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>
    </activity>
    <activity android:name=".Main2" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".StartMain" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".MainCalc" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".Info" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".NaturezaDoSom" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".CaracteristicasDaAudicaoHumana" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".PropagacaoAoArLivre" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".PropagacaoAoArLivre_PerdaPresDist" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".PropagacaoAoArLivre_VelTemp" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".NaturezaDoSom_FreqPer" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".NaturezaDoSom_FreqVelSom" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".NaturezaDoSom_NumDobVol" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".NaturezaDoSom_NumOitDuasFreq" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".NaturezaDoSom_SisMasMola" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".CaracteristicasDaAudicaoHumana_NumDobVol" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".CaracteristicasDaAudicaoHumana_NumOitDuasFreq" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".CaracteristicasDaAudicaoHumana_QuantoVarTempo" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".ODecibel_Bel" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".ODecibel_dBm" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".ODecibel_dBSPL" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".ODecibel_dBu" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".ODecibel_Decibel" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".ODecibel_PVR" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".ODecibel" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".ODecibel_DecibelTensaoEletrica" android:theme="@android:style/Theme.NoTitleBar"/>
    <activity android:name=".Pagina" android:theme="@android:style/Theme.NoTitleBar"/>
</application></manifest>
4

1 に答える 1

0

ICSまたはhoneyCombを備えたデバイスにアクセスできない場合は、AVD(エミュレーター)を作成して試してみることができます。ログキャットでエラーレポートを確認してください。これが上記の情報で役立つと思います。

于 2012-06-19T13:25:13.627 に答える