gpt4 book ai didi

android - 从 Eclipse 到 android studio 网络问题

转载 作者:搜寻专家 更新时间:2023-11-01 08:42:54 25 4
gpt4 key购买 nike

因此,我正在将一个完美运行(在 4 部手机上测试过)的项目从 Eclipse 导入到 Android studio,当我运行应用程序时根本没有修改任何东西,它根本不允许我使用互联网。

至于代码...发布任何代码都没有意义,因为我创建了一个除了连接到数据库之外什么都不做的应用程序,它仍然无法工作,而当我从Eclipse 到我的手机。 (顺便说一句,同一部手机)

只是为了确保这不会是一个答案:我已经在我的 list 中添加了权限。

有什么建议吗?

// list 。

 <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="vlad.tests.com.udptextconnection" >

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >



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

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

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

<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

//Build.gradle (module:app)

    apply plugin: 'com.android.application'

android {
compileSdkVersion 21
buildToolsVersion "21.1.2"

defaultConfig {
applicationId "vlad.tests.com.udptextconnection"
minSdkVersion 15
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.1.1'
}

//Build.gradle(项目[项目名称])

    // Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.0'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
jcenter()
}
}

最佳答案

尝试将权限放在应用程序标签之外。

关于android - 从 Eclipse 到 android studio 网络问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31087041/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com