-
-
Notifications
You must be signed in to change notification settings - Fork 343
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This way this sample will be usable through both products
- Loading branch information
Dimitar Kerezov
committed
Aug 14, 2015
1 parent
dc5a1a8
commit 3157a4a
Showing
3 changed files
with
79 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/**/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |