Android Studio Project可在模拟器中运行,但不适用于手机(三星Galaxy A5)

时间:2016-03-23 02:57:35

标签: android-studio wamp

我遇到问题我的项目在Android Studio的模拟器中完美运行,但我在电话(三星Galaxy A5)上测试时却无法说出来。

这是我学校的一个项目。我是这种节目的新手。

该应用程序包含一个使用WAMPP连接到我的本地主机的登录和注册活动,我不确定,但我想我必须在我的清单中添加一些功能或类似功能。我认为问题是应用程序使用PHP连接到WAMPP,也许我必须在我的设备中安装一些东西或者改变我的代码。我很感激各种帮助。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.gonalo.demodemo">
/**
* under this line where it says uses-permission ... Internet.. do i must add something else

*/
<uses-permission android:name="android.permission.INTERNET"/>
<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"
        android:label="@string/app_name"
        android:theme="@style/AppTheme.NoActionBar">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".Register"
        android:label="@string/title_activity_register"
        android:theme="@style/AppTheme.NoActionBar"></activity>
</application>

</manifest>

0 个答案:

没有答案