错误 - 属性' android:testOnly'未找到

时间:2018-02-20 19:34:36

标签: android android-studio sdk runtime dropbox

我试图运行这个例子" DBRoulette"在DropBox Android SDK中:

https://www.dropbox.com/developers-v1/core/sdks/android

当我在Android Studio(Build - > Rebuild Project)中构建项目时,我没有错误,但是当我尝试在我的设备上运行代码时(从Android Studio)我得到了错误:

  

"属性' android:testOnly'找不到"

我可以看到这一行:

android:testOnly="true"

在AndroidManifest.xml"文件但据我所知,我无法编辑此文件并将其更改为testOnly=false

有什么问题?为什么我会收到此错误?

(如果重要的是我使用的是Gradle-4.5.1)

以下是我收到的完整构建消息:

Information:Gradle tasks [:app:assembleDebug]
D:\AndroidProjects\DropboxSDK-1.6.3\DBRouletteTest\app\build\intermediates\manifests\instant-run\debug\AndroidManifest.xml
Error:(12) error: attribute 'android:testOnly' not found.
Error:(12) attribute 'android:testOnly' not found.
Error:failed processing manifest.
Error:java.util.concurrent.ExecutionException: java.util.concurrent.ExecutionException: com.android.tools.aapt2.Aapt2Exception: AAPT2 error: check logs for details
Error:java.util.concurrent.ExecutionException: com.android.tools.aapt2.Aapt2Exception: AAPT2 error: check logs for details
Error:com.android.tools.aapt2.Aapt2Exception: AAPT2 error: check logs for details
Information:BUILD FAILED in 0s
Information:6 errors
Information:0 warnings
Information:See complete output in console

这是AndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.dropbox.android.sample"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="3" />

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

    <application
        android:debuggable="true"
        android:icon="@drawable/icon"
        android:label="@string/app_name"
        android:testOnly="true" >
        <activity
            android:name="com.dropbox.android.sample.DBRoulette"
            android:configChanges="orientation|keyboard"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.dropbox.client2.android.AuthActivity"
            android:configChanges="orientation|keyboard"
            android:launchMode="singleTask" >
            <intent-filter>

                <!-- Change this to be db- followed by your app key -->
                <data android:scheme="db-CHANGE_ME" />

                <action android:name="android.intent.action.VIEW" />

                <category android:name="android.intent.category.BROWSABLE" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>

        <provider
            android:name="com.android.tools.ir.server.InstantRunContentProvider"
            android:authorities="com.dropbox.android.sample.com.android.tools.ir.server.InstantRunContentProvider"
            android:multiprocess="true" />
    </application>

</manifest>

2 个答案:

答案 0 :(得分:1)

build.gradle中将compileSdkVersion更改为更高。我将compileSdkVersion更改为28,并且可以正常工作。

答案 1 :(得分:0)

我想,也许吧。最后,我设法通过执行以下操作来启动应用程序:

复制我的AndroidManifest.xml并输入您的密钥。 在DBRoulette.class中添加您的密钥和密钥。 在build.gradle(Module:app)文件中,将最小sdk从3更改为4.

这对我有用,因为android 3:testOnly功能在API 3中无法使用(根据Android Studio&#39;警告) 如果我告诉你的工作是由API 3产生的问题,并通过将其标记为正确来关闭问题,否则解释更多问题。

我的宣言:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.dropbox.android.sample"
android:versionCode="1"
android:versionName="1.0">

<uses-sdk android:minSdkVersion="3" />

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission     android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

<application android:icon="@drawable/icon"
    android:label="@string/app_name">
    <activity
        android:name=".DBRoulette"
        android:label="@string/app_name"
        android:configChanges="orientation|keyboard">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <activity
        android:name="com.dropbox.client2.android.AuthActivity"
        android:launchMode="singleTask"
        android:configChanges="orientation|keyboard">
        <intent-filter>
            <!-- Change this to be db- followed by your app key -->
            <data android:scheme="db-YOUR_TOKEN" />
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.BROWSABLE"/>
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>

</application>
</manifest>