0

我正在尝试使用 PdfRenderer API 实现渲染/查看 pdf 文件。所以我在 res(resources) 中创建了一个资产文件夹,其中包含一个名为 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中不允许内容。:app:mergeDebugResources FAILED 错误:任务 ':app:mergeDebugResources' 执行失败。

C:\Users\AndroidNewBee\AndroidStudioProjects\DemoPdf\app\src\main\res\assets\sample.pdf:1:1:错误:prolog 中不允许内容。构建失败。

我是编程新手,因此感谢您提供任何帮助或建议。谢谢。

4

1 回答 1

2

/assets文件夹在 下/main,而不是在 下/res。您的构建错误基本上是说它在您的/res文件夹中找到了不应该包含的内容。

于 2016-06-24T07:54:59.423 回答