Skip to content

Commit f72742c

Browse files
committed
Forgot the codez
1 parent 2595288 commit f72742c

File tree

17 files changed

+761
-0
lines changed

17 files changed

+761
-0
lines changed

AndroidManifest.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="co.touchlab"
4+
android:versionCode="1"
5+
android:versionName="1.0">
6+
<uses-sdk android:minSdkVersion="5"/>
7+
<application android:label="@string/app_name" android:icon="@drawable/icon">
8+
<activity android:name="co.touchlab.dblocking.MyActivity"
9+
android:label="@string/app_name">
10+
<intent-filter>
11+
<action android:name="android.intent.action.MAIN" />
12+
<category android:name="android.intent.category.LAUNCHER" />
13+
</intent-filter>
14+
</activity>
15+
</application>
16+
</manifest>

build.properties

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# This file is used to override default values used by the Ant build system.
2+
#
3+
# This file must be checked in Version Control Systems, as it is
4+
# integral to the build system of your project.
5+
6+
# This file is only used by the Ant script.
7+
8+
# You can use this to override default values such as
9+
# 'source.dir' for the location of your java source folder and
10+
# 'out.dir' for the location of your output folder.
11+
12+
# You can also use it define how the release builds are signed by declaring
13+
# the following properties:
14+
# 'key.store' for the location of your keystore and
15+
# 'key.alias' for the name of the key to use.
16+
# The password will be asked during the build when you use the 'release' target.
17+

build.xml

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project name="dblocking" default="help">
3+
4+
<!-- The local.properties file is created and updated by the 'android'
5+
tool.
6+
It contains the path to the SDK. It should *NOT* be checked into
7+
Version Control Systems. -->
8+
<property file="local.properties" />
9+
10+
<!-- The build.properties file can be created by you and is never touched
11+
by the 'android' tool. This is the place to change some of the
12+
default property values used by the Ant rules.
13+
Here are some properties you may want to change/update:
14+
15+
source.dir
16+
The name of the source directory. Default is 'src'.
17+
out.dir
18+
The name of the output directory. Default is 'bin'.
19+
20+
Properties related to the SDK location or the project target should
21+
be updated using the 'android' tool with the 'update' action.
22+
23+
This file is an integral part of the build system for your
24+
application and should be checked into Version Control Systems.
25+
26+
-->
27+
<property file="build.properties" />
28+
29+
<!-- The default.properties file is created and updated by the 'android'
30+
tool, as well as ADT.
31+
This file is an integral part of the build system for your
32+
application and should be checked into Version Control Systems. -->
33+
<property file="default.properties" />
34+
35+
36+
<!-- Required pre-setup import -->
37+
<import file="${sdk.dir}/tools/ant/pre_setup.xml" />
38+
39+
40+
<!-- extension targets. Uncomment the ones where you want to do custom work
41+
in between standard targets -->
42+
<!--
43+
<target name="-pre-build">
44+
</target>
45+
<target name="-pre-compile">
46+
</target>
47+
48+
[This is typically used for code obfuscation.
49+
Compiled code location: ${out.classes.absolute.dir}
50+
If this is not done in place, override ${out.dex.input.absolute.dir}]
51+
<target name="-post-compile">
52+
</target>
53+
-->
54+
55+
<!-- Execute the Android Setup task that will setup some properties
56+
specific to the target, and import the build rules files.
57+
58+
The rules file is imported from
59+
<SDK>/tools/ant/
60+
Depending on the project type it can be either:
61+
- main_rules.xml
62+
- lib_rules.xml
63+
- test_rules.xml
64+
65+
To customize existing targets, there are two options:
66+
- Customize only one target:
67+
- copy/paste the target into this file, *before* the
68+
<setup> task.
69+
- customize it to your needs.
70+
- Customize the whole script.
71+
- copy/paste the content of the rules files (minus the top node)
72+
into this file, *after* the <setup> task
73+
- disable the import of the rules by changing the setup task
74+
below to <setup import="false" />.
75+
- customize to your needs.
76+
-->
77+
<setup />
78+
79+
</project>

dblocking.apk

16.9 KB
Binary file not shown.

dblocking.iml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="ANDROID_MODULE" version="4">
3+
<component name="FacetManager">
4+
<facet type="android" name="Android">
5+
<configuration>
6+
<option name="GEN_FOLDER_RELATIVE_PATH_APT" value="/gen" />
7+
<option name="GEN_FOLDER_RELATIVE_PATH_AIDL" value="/gen" />
8+
<option name="MANIFEST_FILE_RELATIVE_PATH" value="/AndroidManifest.xml" />
9+
<option name="RES_FOLDER_RELATIVE_PATH" value="/res" />
10+
<option name="ASSETS_FOLDER_RELATIVE_PATH" value="/assets" />
11+
<option name="LIBS_FOLDER_RELATIVE_PATH" value="/libs" />
12+
<option name="REGENERATE_R_JAVA" value="true" />
13+
<option name="REGENERATE_JAVA_BY_AIDL" value="true" />
14+
<option name="USE_CUSTOM_APK_RESOURCE_FOLDER" value="false" />
15+
<option name="CUSTOM_APK_RESOURCE_FOLDER" value="" />
16+
<option name="USE_CUSTOM_COMPILER_MANIFEST" value="false" />
17+
<option name="CUSTOM_COMPILER_MANIFEST" value="" />
18+
<option name="APK_PATH" value="" />
19+
<option name="LIBRARY_PROJECT" value="false" />
20+
<option name="RUN_PROCESS_RESOURCES_MAVEN_TASK" value="true" />
21+
<option name="GENERATE_UNSIGNED_APK" value="false" />
22+
</configuration>
23+
</facet>
24+
</component>
25+
<component name="NewModuleRootManager" inherit-compiler-output="true">
26+
<exclude-output />
27+
<content url="file://$MODULE_DIR$">
28+
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
29+
<sourceFolder url="file://$MODULE_DIR$/gen" isTestSource="false" />
30+
</content>
31+
<orderEntry type="jdk" jdkName="Android 2.3.3 Google APIs" jdkType="Android SDK" />
32+
<orderEntry type="sourceFolder" forTests="false" />
33+
</component>
34+
</module>
35+

dblocking.ipr

Lines changed: 204 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,204 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project version="4">
3+
<component name="AntConfiguration">
4+
<defaultAnt bundledAnt="true" />
5+
</component>
6+
<component name="CompilerConfiguration">
7+
<option name="DEFAULT_COMPILER" value="Javac" />
8+
<resourceExtensions />
9+
<wildcardResourcePatterns>
10+
<entry name="?*.properties" />
11+
<entry name="?*.xml" />
12+
<entry name="?*.gif" />
13+
<entry name="?*.png" />
14+
<entry name="?*.jpeg" />
15+
<entry name="?*.jpg" />
16+
<entry name="?*.html" />
17+
<entry name="?*.dtd" />
18+
<entry name="?*.tld" />
19+
<entry name="?*.ftl" />
20+
</wildcardResourcePatterns>
21+
<annotationProcessing enabled="false" useClasspath="true" />
22+
</component>
23+
<component name="CopyrightManager" default="">
24+
<module2copyright />
25+
</component>
26+
<component name="DependencyValidationManager">
27+
<option name="SKIP_IMPORT_STATEMENTS" value="false" />
28+
</component>
29+
<component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" />
30+
<component name="EntryPointsManager">
31+
<entry_points version="2.0" />
32+
</component>
33+
<component name="IdProvider" IDEtalkID="43C57C92C1E64E5B879A98B1A993FCB5" />
34+
<component name="JavadocGenerationManager">
35+
<option name="OUTPUT_DIRECTORY" />
36+
<option name="OPTION_SCOPE" value="protected" />
37+
<option name="OPTION_HIERARCHY" value="true" />
38+
<option name="OPTION_NAVIGATOR" value="true" />
39+
<option name="OPTION_INDEX" value="true" />
40+
<option name="OPTION_SEPARATE_INDEX" value="true" />
41+
<option name="OPTION_DOCUMENT_TAG_USE" value="false" />
42+
<option name="OPTION_DOCUMENT_TAG_AUTHOR" value="false" />
43+
<option name="OPTION_DOCUMENT_TAG_VERSION" value="false" />
44+
<option name="OPTION_DOCUMENT_TAG_DEPRECATED" value="true" />
45+
<option name="OPTION_DEPRECATED_LIST" value="true" />
46+
<option name="OTHER_OPTIONS" value="" />
47+
<option name="HEAP_SIZE" />
48+
<option name="LOCALE" />
49+
<option name="OPEN_IN_BROWSER" value="true" />
50+
</component>
51+
<component name="Palette2">
52+
<group name="Swing">
53+
<item class="com.intellij.uiDesigner.HSpacer" tooltip-text="Horizontal Spacer" icon="/com/intellij/uiDesigner/icons/hspacer.png" removable="false" auto-create-binding="false" can-attach-label="false">
54+
<default-constraints vsize-policy="1" hsize-policy="6" anchor="0" fill="1" />
55+
</item>
56+
<item class="com.intellij.uiDesigner.VSpacer" tooltip-text="Vertical Spacer" icon="/com/intellij/uiDesigner/icons/vspacer.png" removable="false" auto-create-binding="false" can-attach-label="false">
57+
<default-constraints vsize-policy="6" hsize-policy="1" anchor="0" fill="2" />
58+
</item>
59+
<item class="javax.swing.JPanel" icon="/com/intellij/uiDesigner/icons/panel.png" removable="false" auto-create-binding="false" can-attach-label="false">
60+
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3" />
61+
</item>
62+
<item class="javax.swing.JScrollPane" icon="/com/intellij/uiDesigner/icons/scrollPane.png" removable="false" auto-create-binding="false" can-attach-label="true">
63+
<default-constraints vsize-policy="7" hsize-policy="7" anchor="0" fill="3" />
64+
</item>
65+
<item class="javax.swing.JButton" icon="/com/intellij/uiDesigner/icons/button.png" removable="false" auto-create-binding="true" can-attach-label="false">
66+
<default-constraints vsize-policy="0" hsize-policy="3" anchor="0" fill="1" />
67+
<initial-values>
68+
<property name="text" value="Button" />
69+
</initial-values>
70+
</item>
71+
<item class="javax.swing.JRadioButton" icon="/com/intellij/uiDesigner/icons/radioButton.png" removable="false" auto-create-binding="true" can-attach-label="false">
72+
<default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
73+
<initial-values>
74+
<property name="text" value="RadioButton" />
75+
</initial-values>
76+
</item>
77+
<item class="javax.swing.JCheckBox" icon="/com/intellij/uiDesigner/icons/checkBox.png" removable="false" auto-create-binding="true" can-attach-label="false">
78+
<default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
79+
<initial-values>
80+
<property name="text" value="CheckBox" />
81+
</initial-values>
82+
</item>
83+
<item class="javax.swing.JLabel" icon="/com/intellij/uiDesigner/icons/label.png" removable="false" auto-create-binding="false" can-attach-label="false">
84+
<default-constraints vsize-policy="0" hsize-policy="0" anchor="8" fill="0" />
85+
<initial-values>
86+
<property name="text" value="Label" />
87+
</initial-values>
88+
</item>
89+
<item class="javax.swing.JTextField" icon="/com/intellij/uiDesigner/icons/textField.png" removable="false" auto-create-binding="true" can-attach-label="true">
90+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
91+
<preferred-size width="150" height="-1" />
92+
</default-constraints>
93+
</item>
94+
<item class="javax.swing.JPasswordField" icon="/com/intellij/uiDesigner/icons/passwordField.png" removable="false" auto-create-binding="true" can-attach-label="true">
95+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
96+
<preferred-size width="150" height="-1" />
97+
</default-constraints>
98+
</item>
99+
<item class="javax.swing.JFormattedTextField" icon="/com/intellij/uiDesigner/icons/formattedTextField.png" removable="false" auto-create-binding="true" can-attach-label="true">
100+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
101+
<preferred-size width="150" height="-1" />
102+
</default-constraints>
103+
</item>
104+
<item class="javax.swing.JTextArea" icon="/com/intellij/uiDesigner/icons/textArea.png" removable="false" auto-create-binding="true" can-attach-label="true">
105+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
106+
<preferred-size width="150" height="50" />
107+
</default-constraints>
108+
</item>
109+
<item class="javax.swing.JTextPane" icon="/com/intellij/uiDesigner/icons/textPane.png" removable="false" auto-create-binding="true" can-attach-label="true">
110+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
111+
<preferred-size width="150" height="50" />
112+
</default-constraints>
113+
</item>
114+
<item class="javax.swing.JEditorPane" icon="/com/intellij/uiDesigner/icons/editorPane.png" removable="false" auto-create-binding="true" can-attach-label="true">
115+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
116+
<preferred-size width="150" height="50" />
117+
</default-constraints>
118+
</item>
119+
<item class="javax.swing.JComboBox" icon="/com/intellij/uiDesigner/icons/comboBox.png" removable="false" auto-create-binding="true" can-attach-label="true">
120+
<default-constraints vsize-policy="0" hsize-policy="2" anchor="8" fill="1" />
121+
</item>
122+
<item class="javax.swing.JTable" icon="/com/intellij/uiDesigner/icons/table.png" removable="false" auto-create-binding="true" can-attach-label="false">
123+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
124+
<preferred-size width="150" height="50" />
125+
</default-constraints>
126+
</item>
127+
<item class="javax.swing.JList" icon="/com/intellij/uiDesigner/icons/list.png" removable="false" auto-create-binding="true" can-attach-label="false">
128+
<default-constraints vsize-policy="6" hsize-policy="2" anchor="0" fill="3">
129+
<preferred-size width="150" height="50" />
130+
</default-constraints>
131+
</item>
132+
<item class="javax.swing.JTree" icon="/com/intellij/uiDesigner/icons/tree.png" removable="false" auto-create-binding="true" can-attach-label="false">
133+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
134+
<preferred-size width="150" height="50" />
135+
</default-constraints>
136+
</item>
137+
<item class="javax.swing.JTabbedPane" icon="/com/intellij/uiDesigner/icons/tabbedPane.png" removable="false" auto-create-binding="true" can-attach-label="false">
138+
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
139+
<preferred-size width="200" height="200" />
140+
</default-constraints>
141+
</item>
142+
<item class="javax.swing.JSplitPane" icon="/com/intellij/uiDesigner/icons/splitPane.png" removable="false" auto-create-binding="false" can-attach-label="false">
143+
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
144+
<preferred-size width="200" height="200" />
145+
</default-constraints>
146+
</item>
147+
<item class="javax.swing.JSpinner" icon="/com/intellij/uiDesigner/icons/spinner.png" removable="false" auto-create-binding="true" can-attach-label="true">
148+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
149+
</item>
150+
<item class="javax.swing.JSlider" icon="/com/intellij/uiDesigner/icons/slider.png" removable="false" auto-create-binding="true" can-attach-label="false">
151+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
152+
</item>
153+
<item class="javax.swing.JSeparator" icon="/com/intellij/uiDesigner/icons/separator.png" removable="false" auto-create-binding="false" can-attach-label="false">
154+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3" />
155+
</item>
156+
<item class="javax.swing.JProgressBar" icon="/com/intellij/uiDesigner/icons/progressbar.png" removable="false" auto-create-binding="true" can-attach-label="false">
157+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1" />
158+
</item>
159+
<item class="javax.swing.JToolBar" icon="/com/intellij/uiDesigner/icons/toolbar.png" removable="false" auto-create-binding="false" can-attach-label="false">
160+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1">
161+
<preferred-size width="-1" height="20" />
162+
</default-constraints>
163+
</item>
164+
<item class="javax.swing.JToolBar$Separator" icon="/com/intellij/uiDesigner/icons/toolbarSeparator.png" removable="false" auto-create-binding="false" can-attach-label="false">
165+
<default-constraints vsize-policy="0" hsize-policy="0" anchor="0" fill="1" />
166+
</item>
167+
<item class="javax.swing.JScrollBar" icon="/com/intellij/uiDesigner/icons/scrollbar.png" removable="false" auto-create-binding="true" can-attach-label="false">
168+
<default-constraints vsize-policy="6" hsize-policy="0" anchor="0" fill="2" />
169+
</item>
170+
</group>
171+
</component>
172+
<component name="ProjectModuleManager">
173+
<modules>
174+
<module fileurl="file://$PROJECT_DIR$/dblocking.iml" filepath="$PROJECT_DIR$/dblocking.iml" />
175+
</modules>
176+
</component>
177+
<component name="ProjectResources">
178+
<default-html-doctype>http://www.w3.org/1999/xhtml</default-html-doctype>
179+
</component>
180+
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_5" assert-keyword="true" jdk-15="true" project-jdk-name="1.6" project-jdk-type="JavaSDK">
181+
<output url="file://$PROJECT_DIR$/out" />
182+
</component>
183+
<component name="VcsDirectoryMappings">
184+
<mapping directory="" vcs="Git" />
185+
</component>
186+
<component name="WebServicesPlugin" addRequiredLibraries="true" />
187+
<component name="masterDetails">
188+
<states>
189+
<state key="ProjectJDKs.UI">
190+
<settings>
191+
<last-edited>1.6</last-edited>
192+
<splitter-proportions>
193+
<option name="proportions">
194+
<list>
195+
<option value="0.2" />
196+
</list>
197+
</option>
198+
</splitter-proportions>
199+
</settings>
200+
</state>
201+
</states>
202+
</component>
203+
</project>
204+

default.properties

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# This file is automatically generated by Android Tools.
2+
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3+
#
4+
# This file must be checked in Version Control Systems.
5+
#
6+
# To customize properties used by the Ant build system use,
7+
# "build.properties", and override values to adapt the script to your
8+
# project structure.
9+
10+
# Project target.
11+
target=Google Inc.:Google APIs:10

gen/co/touchlab/R.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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 co.touchlab;
9+
10+
public final class R {
11+
public static final class attr {
12+
}
13+
public static final class drawable {
14+
public static final int icon=0x7f020000;
15+
}
16+
public static final class id {
17+
public static final int manyHelpers=0x7f050001;
18+
public static final int oneHelper=0x7f050000;
19+
public static final int results=0x7f050002;
20+
}
21+
public static final class layout {
22+
public static final int main=0x7f030000;
23+
}
24+
public static final class string {
25+
public static final int app_name=0x7f040000;
26+
}
27+
}

keystorepassword.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
flapjack

0 commit comments

Comments
 (0)