java - Google play supported devices 0 with pdfbox-android -


have problem already-published application on google play.

the application in store, no 1 can download, because of error supported devices 0.

i did refactor project, removed unnecessary manifest. compiled new apk, , again "supported devices 0".

i use pdfbox-android-1.8.8.jar.

if remove pdfbox project, "supported devices 7700".

i build project eclipse.

what mean?

manifest

<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android"    package="com.firm.project"    android:versioncode="3"    android:versionname="1.01" >  <uses-sdk     android:minsdkversion="15"     android:targetsdkversion="21"/>   <uses-permission   android:name="android.permission.write_external_storage"/>  <uses-permission android:name="android.permission.camera"/>   <application     android:name=".app"     android:allowbackup="true"     android:icon="@drawable/ic_launcher"     android:label="@string/app_name"     android:theme="@style/apptheme">     <activity         android:name=".startactivity"         android:label="@string/app_name"           android:screenorientation="portrait">         <intent-filter>             <action android:name="android.intent.action.main" />              <category android:name="android.intent.category.launcher" />         </intent-filter>     </activity>     <activity          android:name=".oneactivity" android:screenorientation="portrait">     </activity>    </application>   </manifest> 


Comments

Popular posts from this blog

c++ - No viable overloaded operator for references a map -

java - Custom OutputStreamAppender not run: LOGBACK: No context given for <MYAPPENDER> -

java - Cannot secure connection using TLS -