我正在关注Android MySQL教程(https://www.simplifiedcoding.net/android-mysql-tutorial-to-perform-basic-crud-operation/#Creating-Helper-Classes),目的是在Apache服务器(XAMPP包)上构建连接到MySQL数据库的Android应用程序。我使用Android Studio(3.0.1)来开发Android部分。
当我尝试在我的Android Manifest文件(允许该应用访问互联网)中运行代码时出现问题。错误是"不支持的类型'使用 - 权限'"如标题中所述。我试图寻找像拼写错误这样的常见错误,或者如果我在代码中要求的许可确实存在,但我找不到任何有用的解决方法。我没有在教程的网站上询问,因为我看起来不太可能得到答案(教程的最后评论是在2015年10月28日),我也看了评论和似乎没有人有类似的问题。
以下是代码:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ch.jemili.yasmina.myheroapp">
<!-- this is the internet permission -->
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
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>
答案 0 :(得分:1)
出于某种原因,您的项目中的app/src/main/res/values/AndroidManifest.xml
中有一个清单文件。这不是清单所在的地方。清单进入app/src/main/AndroidManifest.xml
。