Skip to content

Commit 0007983

Browse files
authored
Merge pull request #331 from EddyVerbruggen/master
feat: Added Vue demo and iOS typings
2 parents df83a28 + 25b3b50 commit 0007983

File tree

85 files changed

+10449
-44
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+10449
-44
lines changed

demo-vue/.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# JetBrains project files
2+
.idea
3+
4+
# NPM
5+
node_modules
6+
7+
# NativeScript application
8+
hooks
9+
platforms

demo-vue/README.md

Lines changed: 19 additions & 0 deletions
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Add your native dependencies here:
2+
3+
android {
4+
defaultConfig {
5+
generatedDensities = []
6+
applicationId = "org.nativescript.plugindemo.googlemaps.vue"
7+
}
8+
aaptOptions {
9+
additionalParameters "--no-version-vectors"
10+
}
11+
}
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest
3+
xmlns:android="http://schemas.android.com/apk/res/android" package="__PACKAGE__" android:versionCode="10000"
4+
android:versionName="1.0.0">
5+
<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true"
6+
android:xlargeScreens="true"/>
7+
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="__APILEVEL__"/>
8+
<uses-permission android:name="android.permission.INTERNET"/>
9+
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
10+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
11+
12+
<application android:name="com.tns.NativeScriptApplication" android:allowBackup="true" android:icon="@drawable/icon"
13+
android:label="@string/app_name" android:theme="@style/AppTheme">
14+
15+
<activity android:name="com.tns.NativeScriptActivity" android:label="@string/title_activity_kimera"
16+
android:configChanges="keyboardHidden|orientation|screenSize"
17+
android:theme="@style/LaunchScreenTheme">
18+
<meta-data android:name="SET_THEME_ON_LAUNCH" android:resource="@style/AppTheme"/>
19+
<intent-filter>
20+
<action android:name="android.intent.action.MAIN"/>
21+
<category android:name="android.intent.category.LAUNCHER"/>
22+
</intent-filter>
23+
</activity>
24+
25+
<activity android:name="com.tns.ErrorReportActivity"/>
26+
27+
<meta-data
28+
android:name="com.google.android.geo.API_KEY"
29+
android:value="@string/nativescript_google_maps_api_key"/>
30+
</application>
31+
</manifest>
5.34 KB
6.79 KB
8.74 KB
1.57 KB
2.58 KB
3.1 KB

0 commit comments

Comments
 (0)