Android Studio - 编译选项

时间:2016-09-15 13:59:03

标签: android compilation ide

我开发了一个Android应用程序与android studio selectiong最低的androis os版本。我测试了我的三星s4上的应用程序,它工作正常,现在我在另一台设备(LG g2)上测试相同的apk文件,当我打开应用程序,它立即关闭。我的应用程序非常简单,我不认为使用高版本库,所以我想知道是否可以编译我的应用程序的特定设备(LG g2),以便我的应用程序在该手机上工作(android 4.4 0.2)。如果不可能,有人知道为什么会出现这个错误吗?

这是清单代码

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

    <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>

0 个答案:

没有答案