我安装了nativescript最新的2.5.0和模块, 创建简单的helloworld应用程序, 它在模拟器API 19中完美运行, 但在使用android 4.4.4的真实设备上失败:
“主”线程上发生了未被捕获的异常。 java.lang.RuntimeException:无法实例化活动 ComponentInfo {org.nativescript.HelloWorld / org.nativescript.HelloWorld.NativeScriptActivity}: java.lang.ClassNotFoundException:没找到类 路径上的“org.nativescript.HelloWorld.NativeScriptActivity”: DexPathList
通过删除活动名称来手动修复清单:.NativeScriptActivity
并再次出错:metadata.getInt
不是函数...
我阅读了所有论坛,但我的问题仍未解决..
清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="__PACKAGE__"
android:versionCode="1"
android:versionName="1.0">
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"/>
<uses-sdk
android:minSdkVersion="17"
android:targetSdkVersion="19"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:name="com.tns.NativeScriptApplication"
android:allowBackup="true"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity
android:name="com.tns.NativeScriptActivity"
android:label="@string/title_activity_kimera"
android:configChanges="keyboardHidden|orientation|screenSize"
android:theme="@style/LaunchScreenTheme">
<meta-data android:name="SET_THEME_ON_LAUNCH" android:resource="@style/AppTheme" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.tns.ErrorReportActivity"/>
</application>
</manifest>