Skip to content
This repository was archived by the owner on Jun 28, 2022. It is now read-only.

Commit 873949e

Browse files
committed
Create repo
0 parents  commit 873949e

File tree

524 files changed

+17973
-0
lines changed

Some content is hidden

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

524 files changed

+17973
-0
lines changed

DinnerApp_FINAL/.gitignore

+106
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
### JetBrains template
2+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion
3+
4+
*.iml
5+
6+
## Directory-based project format:
7+
.idea/
8+
# if you remove the above rule, at least ignore the following:
9+
10+
# User-specific stuff:
11+
# .idea/workspace.xml
12+
# .idea/tasks.xml
13+
# .idea/dictionaries
14+
15+
# Sensitive or high-churn files:
16+
# .idea/dataSources.ids
17+
# .idea/dataSources.xml
18+
# .idea/sqlDataSources.xml
19+
# .idea/dynamic.xml
20+
# .idea/uiDesigner.xml
21+
22+
# Gradle:
23+
# .idea/gradle.xml
24+
# .idea/libraries
25+
26+
# Mongo Explorer plugin:
27+
# .idea/mongoSettings.xml
28+
29+
## File-based project format:
30+
*.ipr
31+
*.iws
32+
33+
## Plugin-specific files:
34+
35+
# IntelliJ
36+
/out/
37+
38+
# mpeltonen/sbt-idea plugin
39+
.idea_modules/
40+
41+
# JIRA plugin
42+
atlassian-ide-plugin.xml
43+
44+
# Crashlytics plugin (for Android Studio and IntelliJ)
45+
com_crashlytics_export_strings.xml
46+
crashlytics.properties
47+
crashlytics-build.properties
48+
49+
50+
### OSX template
51+
.DS_Store
52+
.AppleDouble
53+
.LSOverride
54+
55+
# Icon must end with two \r
56+
Icon
57+
58+
# Thumbnails
59+
._*
60+
61+
# Files that might appear in the root of a volume
62+
.DocumentRevisions-V100
63+
.fseventsd
64+
.Spotlight-V100
65+
.TemporaryItems
66+
.Trashes
67+
.VolumeIcon.icns
68+
69+
# Directories potentially created on remote AFP share
70+
.AppleDB
71+
.AppleDesktop
72+
Network Trash Folder
73+
Temporary Items
74+
.apdisk
75+
76+
77+
### Android template
78+
# Built application files
79+
*.apk
80+
*.ap_
81+
82+
# Files for the Dalvik VM
83+
*.dex
84+
85+
# Java class files
86+
*.class
87+
88+
# Generated files
89+
bin/
90+
gen/
91+
92+
# Gradle files
93+
.gradle/
94+
build/
95+
/*/build/
96+
97+
# Local configuration file (sdk path, etc)
98+
local.properties
99+
100+
# Proguard folder generated by Eclipse
101+
proguard/
102+
103+
# Log Files
104+
*.log
105+
106+
.DS_Store

DinnerApp_FINAL/app/.gitignore

+106
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
### JetBrains template
2+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion
3+
4+
*.iml
5+
6+
## Directory-based project format:
7+
.idea/
8+
# if you remove the above rule, at least ignore the following:
9+
10+
# User-specific stuff:
11+
# .idea/workspace.xml
12+
# .idea/tasks.xml
13+
# .idea/dictionaries
14+
15+
# Sensitive or high-churn files:
16+
# .idea/dataSources.ids
17+
# .idea/dataSources.xml
18+
# .idea/sqlDataSources.xml
19+
# .idea/dynamic.xml
20+
# .idea/uiDesigner.xml
21+
22+
# Gradle:
23+
# .idea/gradle.xml
24+
# .idea/libraries
25+
26+
# Mongo Explorer plugin:
27+
# .idea/mongoSettings.xml
28+
29+
## File-based project format:
30+
*.ipr
31+
*.iws
32+
33+
## Plugin-specific files:
34+
35+
# IntelliJ
36+
/out/
37+
38+
# mpeltonen/sbt-idea plugin
39+
.idea_modules/
40+
41+
# JIRA plugin
42+
atlassian-ide-plugin.xml
43+
44+
# Crashlytics plugin (for Android Studio and IntelliJ)
45+
com_crashlytics_export_strings.xml
46+
crashlytics.properties
47+
crashlytics-build.properties
48+
49+
50+
### OSX template
51+
.DS_Store
52+
.AppleDouble
53+
.LSOverride
54+
55+
# Icon must end with two \r
56+
Icon
57+
58+
# Thumbnails
59+
._*
60+
61+
# Files that might appear in the root of a volume
62+
.DocumentRevisions-V100
63+
.fseventsd
64+
.Spotlight-V100
65+
.TemporaryItems
66+
.Trashes
67+
.VolumeIcon.icns
68+
69+
# Directories potentially created on remote AFP share
70+
.AppleDB
71+
.AppleDesktop
72+
Network Trash Folder
73+
Temporary Items
74+
.apdisk
75+
76+
77+
### Android template
78+
# Built application files
79+
*.apk
80+
*.ap_
81+
82+
# Files for the Dalvik VM
83+
*.dex
84+
85+
# Java class files
86+
*.class
87+
88+
# Generated files
89+
bin/
90+
gen/
91+
92+
# Gradle files
93+
.gradle/
94+
build/
95+
/*/build/
96+
97+
# Local configuration file (sdk path, etc)
98+
local.properties
99+
100+
# Proguard folder generated by Eclipse
101+
proguard/
102+
103+
# Log Files
104+
*.log
105+
106+
.DS_Store

DinnerApp_FINAL/app/build.gradle

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
compileSdkVersion 21
5+
buildToolsVersion "21.1.2"
6+
7+
defaultConfig {
8+
applicationId "com.example.android.dinnerapp"
9+
minSdkVersion 18
10+
targetSdkVersion 21
11+
versionCode 1
12+
versionName "1.0"
13+
}
14+
buildTypes {
15+
release {
16+
minifyEnabled false
17+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
18+
}
19+
}
20+
}
21+
22+
dependencies {
23+
compile fileTree(dir: 'libs', include: ['*.jar'])
24+
compile 'com.android.support:appcompat-v7:22.0.0'
25+
compile 'com.google.android.gms:play-services:6.5.+'
26+
}
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Add project specific ProGuard rules here.
2+
# By default, the flags in this file are appended to flags specified
3+
# in /Users/jocelyn/AndroidSDK/sdk/tools/proguard/proguard-android.txt
4+
# You can edit the include path and order by changing the proguardFiles
5+
# directive in build.gradle.
6+
#
7+
# For more details, see
8+
# http://developer.android.com/guide/developing/tools/proguard.html
9+
10+
# Add any project specific keep options here:
11+
12+
# If your project uses WebView with JS, uncomment the following
13+
# and specify the fully qualified class name to the JavaScript interface
14+
# class:
15+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16+
# public *;
17+
#}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
/*
2+
* Copyright (C) 2015 The Android Open Source Project
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
package com.example.android.dinnerapp;
17+
18+
import android.app.Application;
19+
import android.test.ApplicationTestCase;
20+
21+
/**
22+
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
23+
*/
24+
public class ApplicationTest extends ApplicationTestCase<Application> {
25+
public ApplicationTest() {
26+
super(Application.class);
27+
}
28+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!-- Copyright (C) 2015 Google Inc. All Rights Reserved.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
-->
16+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
17+
package="com.example.android.dinnerapp" >
18+
19+
<uses-permission android:name="android.permission.INTERNET" />
20+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
21+
22+
<meta-data android:name="com.google.android.gms.version"
23+
android:value="@integer/google_play_services_version" />
24+
25+
<application
26+
android:allowBackup="true"
27+
android:icon="@mipmap/ic_launcher"
28+
android:label="@string/app_name"
29+
android:theme="@style/AppTheme"
30+
android:name=".MyApplication"
31+
>
32+
33+
<activity
34+
android:name=".MainActivity"
35+
android:label="@string/app_name">
36+
<intent-filter>
37+
<action android:name="android.intent.action.MAIN" />
38+
<category android:name="android.intent.category.LAUNCHER" />
39+
</intent-filter>
40+
</activity>
41+
<activity
42+
android:name=".ShowDinnerActivity"
43+
android:label=""
44+
android:parentActivityName=".ShowDinnerActivity" >
45+
<meta-data
46+
android:name="android.support.PARENT_ACTIVITY"
47+
android:value="com.example.android.dinnerapp.MainActivity" />
48+
</activity>
49+
<activity
50+
android:name=".ShowAllDinnersActivity"
51+
android:label=""
52+
android:parentActivityName=".ShowAllDinnersActivity" >
53+
<meta-data
54+
android:name="android.support.PARENT_ACTIVITY"
55+
android:value="com.example.android.dinnerapp.MainActivity" />
56+
</activity>
57+
<activity
58+
android:name=".ShowRecipeActivity"
59+
android:label=""
60+
android:parentActivityName="com.example.android.dinnerapp.ShowRecipeActivity" >
61+
<meta-data
62+
android:name="android.support.PARENT_ACTIVITY"
63+
android:value=".ShowDinnerActivity" />
64+
</activity>
65+
66+
<activity
67+
android:name=".OrderDinnerActivity"
68+
android:label=""
69+
android:parentActivityName=".OrderDinnerActivity" >
70+
<meta-data
71+
android:name="android.support.PARENT_ACTIVITY"
72+
android:value=".ShowDinnerActivity" />
73+
</activity>
74+
75+
<activity
76+
android:name=".RemoveMealActivity"
77+
android:label=""
78+
android:parentActivityName="com.example.android.dinnerapp.RemoveMealActivity" >
79+
<meta-data
80+
android:name="android.support.PARENT_ACTIVITY"
81+
android:value=".ShowDinnerActivity" />
82+
</activity>
83+
84+
<activity
85+
android:name=".ShowDailySpecialActivity"
86+
android:label=""
87+
android:parentActivityName="com.example.android.dinnerapp.ShowDailySpecialActivity" >
88+
<meta-data
89+
android:name="android.support.PARENT_ACTIVITY"
90+
android:value=".MainActivity" />
91+
</activity>
92+
93+
</application>
94+
95+
</manifest>

0 commit comments

Comments
 (0)