رفتن به مطلب
  • 0

خطا در پوش


sinam443

سوال

با سلام خدمت اساتید من تازگیا تو ساختن برنامه دارای پوش مثال خود سایتو میشناسه ولی وقتی من به نرم افزار خودم اضافه میکنم بهم ارور میده که کلا گوشی نمیتونه بشناسه اولش فک کردم از نسخه اندرویده ولی مثال ساده رو باز کرد بنظرتون تو جا گذاری کد توی منیفست اشتباه کردم؟؟؟

اینم کد منیفستم.

   
AddManifestText(
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="23"/>
<supports-screens android:largeScreens="true" 
    android:normalScreens="true" 
    android:smallScreens="true" 
    android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
AddManifestText(
<permission
        android:name="Terminator.sina.permission.C2D_MESSAGE"
        android:protectionLevel="signature" />
<uses-permission android:name="Terminator.sina.permission.C2D_MESSAGE" />

        <!-- Optional permissions -->
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
        )

        AddApplicationText(
<receiver android:name="co.ronash.pushe.receiver.UpdateReceiver" >
<intent-filter>
    <action android:name="android.intent.action.PACKAGE_REPLACED" />

    <data
            android:path="Terminator.sina"
            android:scheme="package" />
</intent-filter>
</receiver>
<receiver
android:name="com.google.android.gms.gcm.GcmReceiver"
android:exported="true"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
    <action android:name="com.google.android.c2dm.intent.RECEIVE" />

    <action android:name="com.google.android.c2dm.intent.REGISTRATION" />

    <category android:name="Terminator.sina" />
</intent-filter>
</receiver>
<service
android:name="co.ronash.pushe.service.GcmService"
android:exported="false" >
<intent-filter>
    <action android:name="com.google.android.c2dm.intent.RECEIVE" />
</intent-filter>
</service>

<receiver
android:name="co.ronash.pushe.receiver.FallbackGcmNetworkManagerReceiver"
android:exported="true" >
<intent-filter>
    <action android:name="co.ronash.pushe.CHECK_TASKS" />
</intent-filter>
</receiver>

<service
android:name="co.ronash.pushe.service.FallbackGcmTaskRunner"
android:exported="false" >
<intent-filter>
    <action android:name="co.ronash.pushe.ACTION_TASK_READY" />
</intent-filter>
</service>
<service
android:name="co.ronash.pushe.task.scheduler.gcm.GcmTaskRunner"
android:exported="true"
android:permission="com.google.android.gms.permission.BIND_NETWORK_TASK_SERVICE" >
<intent-filter>
    <action android:name="com.google.android.gms.gcm.ACTION_TASK_READY" />
</intent-filter>
</service>
<service
android:name="co.ronash.pushe.service.IntentTaskRunner"
android:exported="false" />
<service
android:name="co.ronash.pushe.service.InstanceIDService"
android:exported="false" >
<intent-filter>
    <action android:name="com.google.android.gms.iid.InstanceID" />
</intent-filter>
</service>
<activity
android:name="co.ronash.pushe.activities.PopupDialogActivity"
android:theme="@style/PusheTransparent">
</activity>

<receiver android:name="co.ronash.pushe.receiver.BootAndScreenReceiver">
<intent-filter>
    <action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
<service android:name="co.ronash.pushe.service.ScreenStateService">
<intent-filter>
    <action android:name="co.ronash.pushe.service.ScreenStateService" />
</intent-filter>
</service>

<activity
android:name="co.ronash.pushe.activities.WebviewActivity">
</activity>

<receiver android:name="co.ronash.pushe.receiver.AppUsageAlarmReceiver">
</receiver>

<receiver android:name="co.ronash.pushe.receiver.ConnectivityReceiver">
<intent-filter>
    <action android:name="android.net.conn.CONNECTIVITY_CHANGE"/>
</intent-filter>
</receiver>

<receiver
android:name="co.ronash.pushe.receiver.AddReceiver"
android:exported="false">
<intent-filter>
    <action android:name="com.evernote.android.job.ADD_JOB_CREATOR"/>
</intent-filter>
</receiver>

<receiver android:name="co.ronash.pushe.receiver.AppChangeReceiver">
<intent-filter>
    <action android:name="android.intent.action.PACKAGE_INSTALL" />
    <action android:name="android.intent.action.PACKAGE_ADDED" />
    <action android:name="android.intent.action.PACKAGE_FULLY_REMOVED" />
    <data android:scheme="package"/>
</intent-filter>
</receiver>

<service
android:name="com.evernote.android.job.v21.PlatformJobService"
android:exported="false"
android:permission="android.permission.BIND_JOB_SERVICE" />
<service
android:name="com.evernote.android.job.v14.PlatformAlarmService"
android:exported="false" />

<receiver
android:name="com.evernote.android.job.v14.PlatformAlarmReceiver"
android:exported="false" >
<intent-filter>
    <action android:name="com.evernote.android.job.v14.RUN_JOB" />
    <action android:name="net.vrallev.android.job.v14.RUN_JOB" />
</intent-filter>
</receiver>
<receiver
android:name="com.evernote.android.job.JobBootReceiver"
android:exported="false" >
<intent-filter>
    <action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<service
android:name="com.evernote.android.job.gcm.PlatformGcmService"
android:exported="true"
android:permission="com.google.android.gms.permission.BIND_NETWORK_TASK_SERVICE">
<intent-filter>
    <action android:name="com.google.android.gms.gcm.ACTION_TASK_READY"/>
</intent-filter>
</service>

    <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version"/>
    <meta-data android:name="co.ronash.pushe.token" android:value="PUSHE_861354833492"/>
    <meta-data android:name="co.ronash.pushe.cr" android:value="aHR0cDovLzJmZDhmM2U3MzVhZjQyNjRiNGNiOTJmZDY1MTRjNjgxOmE0NTA1MmE4OWFkZjQ2ZTZiZTIyMGQ0YjliOWNjYmZiQGNhLnB1c2hlLmlyLzcxNTc="/>
)

        

 

لینک ارسال
به اشتراک گذاری در سایت های دیگر

1 پاسخ به این سوال تاکنون داده شده است

ارسال‌های توصیه شده

دوستان الان با کلی زحمت درستش کردم ولی الان گرافیک برنامه پوچه.:empathy3:

انگاری برنامه رو تو اندروید 2 نصب کردی

لینک ارسال
به اشتراک گذاری در سایت های دیگر

بایگانی شده

این موضوع بایگانی و قفل شده و دیگر امکان ارسال پاسخ نیست.

  • کاربران آنلاین در این صفحه   0 کاربر

    • هیچ کاربر عضوی،در حال مشاهده این صفحه نیست.
×
×
  • اضافه کردن...