我正在尝试使用PdfRenderer API实现渲染/查看pdf文件。所以我在res(资源)中创建了一个资源文件夹,其中有一个名为sample.pdf的pdf文件。以下是我的build.gradle文件的样子。
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "org.inevitablesol.com.demopdf"
minSdkVersion 21
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
}
//adding aaptOptions
android {
aaptOptions {
noCompress "pdf"
}
}
这是我的清单文件。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.inevitablesol.com.demopdf">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
当我构建项目时,我收到以下错误:错误:(1,1) 错误:prolog中不允许使用内容。 :应用:mergeDebugResources FAILED错误:任务执行失败&#39;:app:mergeDebugResources&#39;。
C:\用户\ AndroidNewBee \ AndroidStudioProjects \ DemoPdf \应用\ SRC \主\ RES \资产\ sample.pdf:1:1: 错误:prolog中不允许使用内容。建立失败。
我是编程新手,所以感谢任何帮助或建议。谢谢。
答案 0 :(得分:1)
/assets
文件夹位于/main
下,而不是/res
下。您的构建错误基本上是说它找到了/res
文件夹中不应该包含的内容。