Skip to content

Commit 0148d89

Browse files
authored
feat(http):get file
2 parents 1584ba9 + f3afdee commit 0148d89

File tree

21 files changed

+7370
-1170
lines changed

21 files changed

+7370
-1170
lines changed
Lines changed: 31 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,40 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="__PACKAGE__"
4-
android:versionCode="10000"
5-
android:versionName="1.0">
3+
package="__PACKAGE__"
4+
android:versionCode="10000"
5+
android:versionName="1.0">
66

7-
<supports-screens
8-
android:smallScreens="true"
9-
android:normalScreens="true"
10-
android:largeScreens="true"
11-
android:xlargeScreens="true"/>
7+
<supports-screens
8+
android:smallScreens="true"
9+
android:normalScreens="true"
10+
android:largeScreens="true"
11+
android:xlargeScreens="true"/>
1212

13-
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
14-
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
15-
<uses-permission android:name="android.permission.INTERNET"/>
13+
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
14+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
15+
<uses-permission android:name="android.permission.INTERNET"/>
1616

17-
<application
18-
android:name="com.tns.NativeScriptApplication"
19-
android:allowBackup="true"
20-
android:icon="@drawable/icon"
21-
android:label="@string/app_name"
22-
android:theme="@style/AppTheme">
17+
<application
18+
android:usesCleartextTraffic="true"
19+
android:name="com.tns.NativeScriptApplication"
20+
android:allowBackup="true"
21+
android:icon="@drawable/icon"
22+
android:label="@string/app_name"
23+
android:theme="@style/AppTheme">
2324

24-
<activity
25-
android:name="com.tns.NativeScriptActivity"
26-
android:label="@string/title_activity_kimera"
27-
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|locale|uiMode"
28-
android:theme="@style/LaunchScreenTheme">
25+
<activity
26+
android:name="com.tns.NativeScriptActivity"
27+
android:label="@string/title_activity_kimera"
28+
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|locale|uiMode"
29+
android:theme="@style/LaunchScreenTheme">
2930

30-
<meta-data android:name="SET_THEME_ON_LAUNCH" android:resource="@style/AppTheme" />
31+
<meta-data android:name="SET_THEME_ON_LAUNCH" android:resource="@style/AppTheme"/>
3132

32-
<intent-filter>
33-
<action android:name="android.intent.action.MAIN" />
34-
<category android:name="android.intent.category.LAUNCHER" />
35-
</intent-filter>
36-
</activity>
37-
<activity android:name="com.tns.ErrorReportActivity"/>
38-
</application>
33+
<intent-filter>
34+
<action android:name="android.intent.action.MAIN"/>
35+
<category android:name="android.intent.category.LAUNCHER"/>
36+
</intent-filter>
37+
</activity>
38+
<activity android:name="com.tns.ErrorReportActivity"/>
39+
</application>
3940
</manifest>

demo-angular/nsconfig.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
22
"appResourcesPath": "App_Resources",
3-
"appPath": "src",
4-
"useLegacyWorkflow": false
5-
}
3+
"appPath": "src"
4+
}

0 commit comments

Comments
 (0)