Skip to content

Commit d8f15e4

Browse files
committed
adding project
0 parents  commit d8f15e4

File tree

40 files changed

+490
-0
lines changed

40 files changed

+490
-0
lines changed

.gitignore

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# built application files
2+
*.apk
3+
*.ap_
4+
5+
# files for the dex VM
6+
*.dex
7+
8+
# Java class files
9+
*.class
10+
11+
# generated files
12+
bin/
13+
gen/
14+
15+
# Local configuration file (sdk path, etc)
16+
local.properties
17+
18+
# Eclipse project files
19+
.classpath
20+
.project
21+
22+
# Proguard folder generated by Eclipse
23+
proguard/
24+
25+
# Intellij project files
26+
*.iml
27+
*.ipr
28+
*.iws
29+
.idea/
30+

build.gradle

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
buildscript {
2+
repositories {
3+
mavenCentral()
4+
}
5+
dependencies {
6+
classpath 'com.android.tools.build:gradle:0.5.+'
7+
}
8+
}
9+
apply plugin: 'android'
10+
11+
repositories {
12+
mavenCentral()
13+
}
14+
15+
android {
16+
compileSdkVersion 17
17+
buildToolsVersion "17.0.0"
18+
19+
defaultConfig {
20+
minSdkVersion 7
21+
targetSdkVersion 16
22+
}
23+
}
24+
25+
dependencies {
26+
compile 'com.android.support:support-v4:18.0.0'
27+
}
5 Bytes
Binary file not shown.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# incremental data. DO NOT EDIT.
2+
# format is <lastModified> <length> <SHA-1> <path>
3+
# Encoding is UTF-8
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# incremental data. DO NOT EDIT.
2+
# format is <lastModified> <length> <SHA-1> <path>
3+
# Encoding is UTF-8
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# incremental data. DO NOT EDIT.
2+
# format is <lastModified> <length> <SHA-1> <path>
3+
# Encoding is UTF-8
4+
1378144546000 415 911abda773b9b9852e6a052f02d2a8dc5829d4e5 /home/evan/MobileProto/Lab0Project/Lab0/build/classes/debug/com/evansimpson/mobpro/lab0/R$menu.class
5+
1378144546000 430 0ed7a229236581c3f44eb90a47ce7a6ee9dbc635 /home/evan/MobileProto/Lab0Project/Lab0/build/classes/debug/com/evansimpson/mobpro/lab0/R$layout.class
6+
1378144546000 367 f15d787715a38e55e9a171301de52cf3eb18179b /home/evan/MobileProto/Lab0Project/Lab0/build/classes/debug/com/evansimpson/mobpro/lab0/R$attr.class
7+
1378144546000 767 29b4d6e5ce7319400c552246aeec93da9007dcde /home/evan/MobileProto/Lab0Project/Lab0/build/classes/debug/com/evansimpson/mobpro/lab0/R.class
8+
1378144546000 499 edfa70d60cb5ab9f8d9e8a052344cf71c45ba8be /home/evan/MobileProto/Lab0Project/Lab0/build/classes/debug/com/evansimpson/mobpro/lab0/R$string.class
9+
1378144546000 363 04ad68dba395952288be369ca857ad70652b7943 /home/evan/MobileProto/Lab0Project/Lab0/build/classes/debug/com/evansimpson/mobpro/lab0/BuildConfig.class
10+
1378144546000 434 60348833f7c45725edd182a4fa1a0b76b54eef79 /home/evan/MobileProto/Lab0Project/Lab0/build/classes/debug/com/evansimpson/mobpro/lab0/R$drawable.class
11+
1378144546000 488 9c4b6872e56cba9df6e8f1474d0b74107e68e51d /home/evan/MobileProto/Lab0Project/Lab0/build/classes/debug/com/evansimpson/mobpro/lab0/R$dimen.class
12+
1378144546000 420 a8be18821c75e937653c8627efad16cfa063bf4d /home/evan/MobileProto/Lab0Project/Lab0/build/classes/debug/com/evansimpson/mobpro/lab0/R$id.class
13+
1378144546000 835 be3afd1b62ffb4a2c9b32539f5010df1a2c9a7d0 /home/evan/MobileProto/Lab0Project/Lab0/build/classes/debug/com/evansimpson/mobpro/lab0/MainActivity.class
14+
1377371078000 563264 44ec51e9d395a47aab135e5e1b556c0007442156 /home/evan/android-studio/sdk/extras/android/m2repository/com/android/support/support-v4/18.0.0/support-v4-18.0.0.jar
15+
1378144546000 458 2a00bd57a2237a44715d4eda7180eec4dbc635d5 /home/evan/MobileProto/Lab0Project/Lab0/build/classes/debug/com/evansimpson/mobpro/lab0/R$style.class
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# incremental data. DO NOT EDIT.
2+
# format is <lastModified> <length> <SHA-1> <path>
3+
# Encoding is UTF-8
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# incremental data. DO NOT EDIT.
2+
# format is <lastModified> <length> <SHA-1> <path>
3+
# Encoding is UTF-8
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<merger>
3+
4+
<dataSet config="main" >
5+
<source path="/home/evan/MobileProto/Lab0Project/Lab0/src/main/assets" />
6+
</dataSet>
7+
<dataSet config="debug" >
8+
<source path="/home/evan/MobileProto/Lab0Project/Lab0/src/debug/assets" />
9+
</dataSet>
10+
11+
</merger>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# incremental data. DO NOT EDIT.
2+
# format is <lastModified> <length> <SHA-1> <path>
3+
# Encoding is UTF-8
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# incremental data. DO NOT EDIT.
2+
# format is <lastModified> <length> <SHA-1> <path>
3+
# Encoding is UTF-8
4+
1378144513000 254 25b6404e44acb50c82590049639d4fb5fefbac8e /home/evan/MobileProto/Lab0Project/Lab0/src/main/res/values-sw720dp-land/dimens.xml
5+
1378144512000 12329 a8301606e15d4b6dccdd775cc273cfc51a552645 /home/evan/MobileProto/Lab0Project/Lab0/src/main/res/drawable-xhdpi/ic_launcher.png
6+
1378144512000 7721 39b0f5a0570da92f471225402ad0ea6de30bf2be /home/evan/MobileProto/Lab0Project/Lab0/src/main/res/drawable-hdpi/ic_launcher.png
7+
1378144512000 318 f37b4c43b290eba4a42d9102f14a550c301de5c8 /home/evan/MobileProto/Lab0Project/Lab0/src/main/res/values-v11/styles.xml
8+
1378144513000 211 4e1904afba59d31e5cd6133f6a4c360fa9a5913f /home/evan/MobileProto/Lab0Project/Lab0/src/main/res/values/dimens.xml
9+
1378144512000 674 c78f92856947cb5742edaa3b94df76b0823dbbe7 /home/evan/MobileProto/Lab0Project/Lab0/src/main/res/values/styles.xml
10+
1378144512000 3769 eec07752d40e268ed7f4a1730acc77ab1e40aeb0 /home/evan/MobileProto/Lab0Project/Lab0/src/main/res/drawable-mdpi/ic_launcher.png
11+
1378144512000 24654 696bbbc63d2250ef7d3373f2d602e604acd13d8c /home/evan/MobileProto/Lab0Project/Lab0/src/main/res/drawable-xxhdpi/ic_launcher.png
12+
1378144513000 181 84de2797380184d8b39af6f829afb092fb956173 /home/evan/MobileProto/Lab0Project/Lab0/src/main/res/values-sw600dp/dimens.xml
13+
1378144513000 215 7e8fac7ae0fa633b5bfe4c937dd4e8a539b95401 /home/evan/MobileProto/Lab0Project/Lab0/src/main/res/values/strings.xml
14+
1378144512000 244 045ff451db7cd8e61285502b8c9bbf7405f2078d /home/evan/MobileProto/Lab0Project/Lab0/src/main/res/menu/main.xml
15+
1378144513000 649 52e8d9051811c2787c5fc0d0dc7735d67b0820be /home/evan/MobileProto/Lab0Project/Lab0/src/main/res/layout/activity_main.xml
Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<merger>
3+
4+
<dataSet config="main" >
5+
<source path="/home/evan/MobileProto/Lab0Project/Lab0/src/main/res" >
6+
<file
7+
name="ic_launcher"
8+
path="/home/evan/MobileProto/Lab0Project/Lab0/src/main/res/drawable-xxhdpi/ic_launcher.png"
9+
qualifiers="xxhdpi"
10+
type="drawable" />
11+
<file
12+
name="ic_launcher"
13+
path="/home/evan/MobileProto/Lab0Project/Lab0/src/main/res/drawable-hdpi/ic_launcher.png"
14+
qualifiers="hdpi"
15+
type="drawable" />
16+
<file
17+
name="ic_launcher"
18+
path="/home/evan/MobileProto/Lab0Project/Lab0/src/main/res/drawable-mdpi/ic_launcher.png"
19+
qualifiers="mdpi"
20+
type="drawable" />
21+
<file
22+
name="ic_launcher"
23+
path="/home/evan/MobileProto/Lab0Project/Lab0/src/main/res/drawable-xhdpi/ic_launcher.png"
24+
qualifiers="xhdpi"
25+
type="drawable" />
26+
<file
27+
name="main"
28+
path="/home/evan/MobileProto/Lab0Project/Lab0/src/main/res/menu/main.xml"
29+
qualifiers=""
30+
type="menu" />
31+
<file
32+
path="/home/evan/MobileProto/Lab0Project/Lab0/src/main/res/values-v11/styles.xml"
33+
qualifiers="v11" >
34+
35+
<style
36+
name="AppBaseTheme"
37+
parent="android:Theme.Holo" >
38+
39+
<!-- API 11 theme customizations can go here. -->
40+
</style>
41+
</file>
42+
<file
43+
path="/home/evan/MobileProto/Lab0Project/Lab0/src/main/res/values/styles.xml"
44+
qualifiers="" >
45+
46+
<style
47+
name="AppBaseTheme"
48+
parent="android:Theme" >
49+
50+
<!--
51+
Theme customizations available in newer API levels can go in
52+
res/values-vXX/styles.xml, while customizations related to
53+
backward-compatibility can go here.
54+
-->
55+
</style>
56+
57+
<style
58+
name="AppTheme"
59+
parent="AppBaseTheme" >
60+
61+
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
62+
</style>
63+
</file>
64+
<file
65+
path="/home/evan/MobileProto/Lab0Project/Lab0/src/main/res/values/strings.xml"
66+
qualifiers="" >
67+
<string name="action_settings" >Settings
68+
</string>
69+
<string name="app_name" >Lab 0
70+
</string>
71+
<string name="hello_world" >Hello world!
72+
</string>
73+
</file>
74+
<file
75+
path="/home/evan/MobileProto/Lab0Project/Lab0/src/main/res/values/dimens.xml"
76+
qualifiers="" >
77+
<dimen name="activity_horizontal_margin" >16dp
78+
</dimen>
79+
<dimen name="activity_vertical_margin" >16dp
80+
</dimen>
81+
</file>
82+
<file
83+
name="activity_main"
84+
path="/home/evan/MobileProto/Lab0Project/Lab0/src/main/res/layout/activity_main.xml"
85+
qualifiers=""
86+
type="layout" />
87+
<file
88+
path="/home/evan/MobileProto/Lab0Project/Lab0/src/main/res/values-sw720dp-land/dimens.xml"
89+
qualifiers="sw720dp-land" >
90+
<dimen name="activity_horizontal_margin" >128dp
91+
</dimen>
92+
</file>
93+
</source>
94+
<source path="/home/evan/MobileProto/Lab0Project/Lab0/build/res/rs/debug" />
95+
</dataSet>
96+
<dataSet config="debug" >
97+
<source path="/home/evan/MobileProto/Lab0Project/Lab0/src/debug/res" />
98+
</dataSet>
99+
100+
</merger>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# incremental data. DO NOT EDIT.
2+
# format is <lastModified> <length> <SHA-1> <path>
3+
# Encoding is UTF-8
4+
1378144544000 1061 82dad68aa25de557aabf76a78ccedc5998b29d67 /home/evan/MobileProto/Lab0Project/Lab0/build/res/all/debug/values/values.xml
5+
1378144544000 330 4fba0bae6e478303592f8295483e8355924a5cdd /home/evan/MobileProto/Lab0Project/Lab0/build/res/all/debug/menu/main.xml
6+
1378144544000 9332 4e0e62a430558d0cce3c5dee6f4709055a63a45c /home/evan/MobileProto/Lab0Project/Lab0/build/res/all/debug/drawable-xhdpi/ic_launcher.png
7+
1378144544000 233 25871a0ee469afb1368fcf72c0e52b00761e31cf /home/evan/MobileProto/Lab0Project/Lab0/build/res/all/debug/values-sw720dp-land/values.xml
8+
1378144544000 5946 4bf7402bd7df466a787014bdbf5cafd9aa89c2b5 /home/evan/MobileProto/Lab0Project/Lab0/build/res/all/debug/drawable-hdpi/ic_launcher.png
9+
1378144544000 17765 702fd3311475c099afc13c0b03375d917cc82018 /home/evan/MobileProto/Lab0Project/Lab0/build/res/all/debug/drawable-xxhdpi/ic_launcher.png
10+
1378144544000 296 ffc6713bbb2a3924dab780befea3a37575d6411f /home/evan/MobileProto/Lab0Project/Lab0/build/res/all/debug/values-v11/values.xml
11+
1378144544000 746 38270fde716c31a665180ba66cc9f21518a0f355 /home/evan/MobileProto/Lab0Project/Lab0/build/res/all/debug/layout/activity_main.xml
12+
1378144544000 3121 c13193c37274d333ac028cc72c260b891662d9d0 /home/evan/MobileProto/Lab0Project/Lab0/build/res/all/debug/drawable-mdpi/ic_launcher.png
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.evansimpson.mobpro.lab0">
2+
3+
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="16"/>
4+
5+
<application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme">
6+
<activity android:label="@string/app_name" android:name="com.evansimpson.mobpro.lab0.MainActivity">
7+
<intent-filter>
8+
<action android:name="android.intent.action.MAIN"/>
9+
10+
<category android:name="android.intent.category.LAUNCHER"/>
11+
</intent-filter>
12+
</activity>
13+
</application>
14+
15+
</manifest>
Loading
Loading
Loading
Loading
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2+
xmlns:tools="http://schemas.android.com/tools"
3+
android:layout_width="match_parent"
4+
android:layout_height="match_parent"
5+
android:paddingLeft="@dimen/activity_horizontal_margin"
6+
android:paddingRight="@dimen/activity_horizontal_margin"
7+
android:paddingTop="@dimen/activity_vertical_margin"
8+
android:paddingBottom="@dimen/activity_vertical_margin"
9+
tools:context=".MainActivity">
10+
11+
<TextView
12+
android:layout_width="wrap_content"
13+
android:layout_height="wrap_content"
14+
android:text="@string/hello_world" />
15+
16+
</RelativeLayout>
17+
<!-- From: file:/home/evan/MobileProto/Lab0Project/Lab0/src/main/res/layout/activity_main.xml -->

build/res/all/debug/menu/main.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<menu xmlns:android="http://schemas.android.com/apk/res/android">
2+
<item android:id="@+id/action_settings"
3+
android:title="@string/action_settings"
4+
android:orderInCategory="100"
5+
android:showAsAction="never" />
6+
</menu>
7+
<!-- From: file:/home/evan/MobileProto/Lab0Project/Lab0/src/main/res/menu/main.xml -->
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
4+
<!-- From: file:/home/evan/MobileProto/Lab0Project/Lab0/src/main/res/values-sw720dp-land/dimens.xml -->
5+
<dimen name="activity_horizontal_margin">128dp</dimen>
6+
7+
</resources>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
4+
<!-- From: file:/home/evan/MobileProto/Lab0Project/Lab0/src/main/res/values-v11/styles.xml -->
5+
<style name="AppBaseTheme" parent="android:Theme.Holo">
6+
<!-- API 11 theme customizations can go here. -->
7+
</style>
8+
9+
</resources>

build/res/all/debug/values/values.xml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
4+
<!-- From: file:/home/evan/MobileProto/Lab0Project/Lab0/src/main/res/values/dimens.xml -->
5+
<dimen name="activity_horizontal_margin">16dp</dimen>
6+
<dimen name="activity_vertical_margin">16dp</dimen>
7+
<!-- From: file:/home/evan/MobileProto/Lab0Project/Lab0/src/main/res/values/strings.xml -->
8+
<string name="action_settings">Settings</string>
9+
<string name="app_name">Lab 0</string>
10+
<string name="hello_world">Hello world!</string>
11+
<!-- From: file:/home/evan/MobileProto/Lab0Project/Lab0/src/main/res/values/styles.xml -->
12+
<style name="AppBaseTheme" parent="android:Theme">
13+
<!--
14+
Theme customizations available in newer API levels can go in
15+
res/values-vXX/styles.xml, while customizations related to
16+
backward-compatibility can go here.
17+
-->
18+
</style>
19+
20+
<style name="AppTheme" parent="AppBaseTheme">
21+
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
22+
</style>
23+
24+
</resources>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/** Automatically generated file. DO NOT MODIFY */
2+
package com.evansimpson.mobpro.lab0;
3+
4+
public final class BuildConfig {
5+
public final static boolean DEBUG = true;
6+
7+
}
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
/* AUTO-GENERATED FILE. DO NOT MODIFY.
2+
*
3+
* This class was automatically generated by the
4+
* aapt tool from the resource data it found. It
5+
* should not be modified by hand.
6+
*/
7+
8+
package com.evansimpson.mobpro.lab0;
9+
10+
public final class R {
11+
public static final class attr {
12+
}
13+
public static final class dimen {
14+
/** From: file:/home/evan/MobileProto/Lab0Project/Lab0/src/main/res/values/dimens.xml
15+
From: file:/home/evan/MobileProto/Lab0Project/Lab0/src/main/res/values-sw720dp-land/dimens.xml
16+
*/
17+
public static final int activity_horizontal_margin=0x7f040000;
18+
public static final int activity_vertical_margin=0x7f040001;
19+
}
20+
public static final class drawable {
21+
public static final int ic_launcher=0x7f020000;
22+
}
23+
public static final class id {
24+
public static final int action_settings=0x7f080000;
25+
}
26+
public static final class layout {
27+
public static final int activity_main=0x7f030000;
28+
}
29+
public static final class menu {
30+
public static final int main=0x7f070000;
31+
}
32+
public static final class string {
33+
/** From: file:/home/evan/MobileProto/Lab0Project/Lab0/src/main/res/values/strings.xml
34+
*/
35+
public static final int action_settings=0x7f050000;
36+
public static final int app_name=0x7f050001;
37+
public static final int hello_world=0x7f050002;
38+
}
39+
public static final class style {
40+
/** From: file:/home/evan/MobileProto/Lab0Project/Lab0/src/main/res/values/styles.xml
41+
42+
Theme customizations available in newer API levels can go in
43+
res/values-vXX/styles.xml, while customizations related to
44+
backward-compatibility can go here.
45+
46+
From: file:/home/evan/MobileProto/Lab0Project/Lab0/src/main/res/values-v11/styles.xml
47+
API 11 theme customizations can go here.
48+
*/
49+
public static final int AppBaseTheme=0x7f060000;
50+
/** All customizations that are NOT specific to a particular API-level can go here.
51+
*/
52+
public static final int AppTheme=0x7f060001;
53+
}
54+
}

0 commit comments

Comments
 (0)