Skip to content

Commit

Permalink
Init AppBuilder project
Browse files Browse the repository at this point in the history
This way this sample will be usable through both products
  • Loading branch information
Dimitar Kerezov committed Aug 14, 2015
1 parent dc5a1a8 commit 3157a4a
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 0 deletions.
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"
}
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>

0 comments on commit 3157a4a

Please sign in to comment.