Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conform sample with both AppBuilder and NativeScript #4

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions .abignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# .abignore lets you configure which of your files and folders should be excluded from your application package during the build process.
# Each project created with AppBuilder 2.6 or later contains a default .abignore which lists a number of system files and folders that might affect the size of your app or might prevent build operations from completing successfully.
#
# For more information about .abignore and how to write exclude and include rules for your projects, see http://docs.telerik.com/platform/appbuilder/testing-your-app/abignore

# Windows files
**/Thumbs.db

# Mac OS files
**/.DS_Store
**/__MACOSX/**/*

# Visual Studio files
bin/**/*
obj/**/*
**/*.obj
**/*.pdb
**/*.user
**/*.aps
**/*.pch
**/*.vspscc
**/*_i.c
**/*_p.c
**/*.ncb
**/*.suo
**/*.tlb
**/*.tlh
**/*.ilk
**/*.lib
**/*.sbr

# Source control files
.gitignore
.git/**/*

# AppBuilder files
.abignore
.ab/**/*

# Other
**/*.bak
**/*.cache
**/*.log

# NativeScript files
platforms/**/*
28 changes: 28 additions & 0 deletions .abproject
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"ProjectName": "sample-Groceries",
"ProjectGuid": "{aef80a5b-1d98-46c7-bf09-6269b23127ac}",
"projectVersion": 1,
"AppIdentifier": "com.telerik.sampleGroceries",
"DisplayName": "sample-Groceries",
"Author": "",
"Description": "sample-Groceries",
"BundleVersion": "1.0",
"AndroidVersionCode": "1",
"iOSDeviceFamily": [
"1",
"2"
],
"iOSBackgroundMode": [],
"ProjectTypeGuids": "{F0A65104-D4F4-4012-B799-F612D75820F6}",
"AndroidPermissions": [
"android.permission.INTERNET"
],
"DeviceOrientations": [
"Portrait",
"Landscape"
],
"AndroidHardwareAcceleration": "false",
"iOSStatusBarStyle": "Default",
"FrameworkVersion": "1.2.2",
"Framework": "NativeScript"
}
Binary file modified app/App_Resources/Android/drawable-nodpi/splashscreen.9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions app/App_Resources/Android/values-v21/styles.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppTheme" parent="android:Theme.Material.Light">
</style>
</resources>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"nativescript": {
"id": "org.nativescript.groceries",
"tns-android": {
"version": "1.2.0"
"version": "1.2.1"
},
"tns-ios": {
"version": "1.2.1"
Expand Down