Skip to content

Commit

Permalink
Initial commit to GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
victorhorta committed Oct 16, 2013
0 parents commit c7be328
Show file tree
Hide file tree
Showing 160 changed files with 2,484 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>
33 changes: 33 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Interakt</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
4 changes: 4 additions & 0 deletions .settings/org.eclipse.jdt.core.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.source=1.6
73 changes: 73 additions & 0 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http:https://schemas.android.com/apk/res/android"
package="me.interakt.app"
android:versionCode="1"
android:versionName="1.0" >

<!--
TODO: ATENCAO: DEVEREI TRATAR OS CASOS EM QUE A CAMERA NAO ESTIVER DISPONIVEL!!!
REF: http:https://developer.android.com/training/camera/photobasics.html
-->
<uses-feature
android:name="android.hardware.camera"
android:required="false" />

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="17" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="me.interakt.app.Splashscreen"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="me.interakt.app.Intro"
android:label="@string/title_activity_intro"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
</activity>
<activity
android:name="me.interakt.app.Main"
android:label="@string/title_activity_main"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
</activity>
<activity
android:name="me.interakt.app.ReadText"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
</activity>
<activity
android:name="me.interakt.app.ReadBoard"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
</activity>
<activity
android:name="me.interakt.app.EditBoard"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.Black" >
</activity>
<activity
android:name="me.interakt.app.EditNodes"
android:screenOrientation="landscape"
android:label="@string/title_activity_edit_nodes" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="me.interakt.app.Main" />
</activity>
</application>

</manifest>
73 changes: 73 additions & 0 deletions bin/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http:https://schemas.android.com/apk/res/android"
package="me.interakt.app"
android:versionCode="1"
android:versionName="1.0" >

<!--
TODO: ATENCAO: DEVEREI TRATAR OS CASOS EM QUE A CAMERA NAO ESTIVER DISPONIVEL!!!
REF: http:https://developer.android.com/training/camera/photobasics.html
-->
<uses-feature
android:name="android.hardware.camera"
android:required="false" />

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="17" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="me.interakt.app.Splashscreen"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="me.interakt.app.Intro"
android:label="@string/title_activity_intro"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
</activity>
<activity
android:name="me.interakt.app.Main"
android:label="@string/title_activity_main"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
</activity>
<activity
android:name="me.interakt.app.ReadText"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
</activity>
<activity
android:name="me.interakt.app.ReadBoard"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
</activity>
<activity
android:name="me.interakt.app.EditBoard"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.Black" >
</activity>
<activity
android:name="me.interakt.app.EditNodes"
android:screenOrientation="landscape"
android:label="@string/title_activity_edit_nodes" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="me.interakt.app.Main" />
</activity>
</application>

</manifest>
Binary file added bin/Interakt.apk
Binary file not shown.
Binary file added bin/classes.dex
Binary file not shown.
Binary file added bin/classes/me/interakt/app/Board.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/BoardScreen.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/BuildConfig.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/Main.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/MainHandler.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/Node.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/NodeDBHelper.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/NodeDataSource.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/PBoard.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/PNode.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/PSymbol.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/R$anim.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/R$array.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/R$attr.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/R$dimen.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/R$drawable.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/R$id.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/R$layout.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/R$menu.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/R$string.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/R$style.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/R$xml.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/R.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/ReadBoard.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/ReadText.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/Splashscreen$1.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/Splashscreen.class
Binary file not shown.
Binary file added bin/classes/me/interakt/app/ZipDecompress.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
3 changes: 3 additions & 0 deletions bin/jarlist.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# cache for current jar dependency. DO NOT EDIT.
# format is <lastModified> <length> <SHA-1> <path>
# Encoding is UTF-8
Binary file added bin/res/drawable-hdpi/ic_audio.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-hdpi/ic_config.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-hdpi/ic_edit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-hdpi/ic_error.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-hdpi/ic_fav.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-hdpi/ic_folder_grey.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-hdpi/ic_folder_yellow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-hdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-hdpi/ic_listen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-hdpi/ic_mail.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-hdpi/ic_play.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-hdpi/ic_play_left.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-hdpi/ic_questionmark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-hdpi/ic_readtext.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-hdpi/ic_share.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-hdpi/ic_speak.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-hdpi/ic_trashcan.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-hdpi/interakt_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-mdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-xhdpi/ic_audio.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-xhdpi/ic_config.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-xhdpi/ic_edit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-xhdpi/ic_error.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-xhdpi/ic_fav.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-xhdpi/ic_folder_gray.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-xhdpi/ic_folder_yellow.png
Binary file added bin/res/drawable-xhdpi/ic_launcher.png
Binary file added bin/res/drawable-xhdpi/ic_listen.png
Binary file added bin/res/drawable-xhdpi/ic_mail.png
Binary file added bin/res/drawable-xhdpi/ic_play.png
Binary file added bin/res/drawable-xhdpi/ic_play_left.png
Binary file added bin/res/drawable-xhdpi/ic_readtext.png
Binary file added bin/res/drawable-xhdpi/ic_share.png
Binary file added bin/res/drawable-xhdpi/ic_speak.png
Binary file added bin/res/drawable-xhdpi/ic_trashcan.png
Binary file added bin/res/drawable-xxhdpi/ic_launcher.png
Binary file added bin/resources.ap_
Binary file not shown.
6 changes: 6 additions & 0 deletions gen/me/interakt/app/BuildConfig.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/** Automatically generated file. DO NOT MODIFY */
package me.interakt.app;

public final class BuildConfig {
public final static boolean DEBUG = true;
}
177 changes: 177 additions & 0 deletions gen/me/interakt/app/R.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,177 @@
/* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/

package me.interakt.app;

public final class R {
public static final class anim {
public static final int mainfadein=0x7f040000;
public static final int splashfadeout=0x7f040001;
}
public static final class array {
public static final int pref_example_list_titles=0x7f080000;
public static final int pref_example_list_values=0x7f080001;
public static final int pref_sync_frequency_titles=0x7f080002;
public static final int pref_sync_frequency_values=0x7f080003;
}
public static final class attr {
}
public static final class dimen {
/** Default screen margins, per the Android Design guidelines.
Customize dimensions originally defined in res/values/dimens.xml (such as
screen margins) for sw720dp devices (e.g. 10" tablets) in landscape here.
*/
public static final int activity_horizontal_margin=0x7f060003;
public static final int activity_vertical_margin=0x7f060004;
public static final int symbol_arrow_margin=0x7f060001;
public static final int symbol_arrow_margin_topdown=0x7f060002;
public static final int symbol_margin=0x7f060000;
}
public static final class drawable {
public static final int gradient_bg=0x7f020000;
public static final int gradient_bg_textbar=0x7f020001;
public static final int gradient_splash=0x7f020002;
public static final int ic_audio=0x7f020003;
public static final int ic_config=0x7f020004;
public static final int ic_edit=0x7f020005;
public static final int ic_error=0x7f020006;
public static final int ic_fav=0x7f020007;
public static final int ic_folder_gray=0x7f020008;
public static final int ic_folder_grey=0x7f020009;
public static final int ic_folder_yellow=0x7f02000a;
public static final int ic_launcher=0x7f02000b;
public static final int ic_listen=0x7f02000c;
public static final int ic_mail=0x7f02000d;
public static final int ic_play=0x7f02000e;
public static final int ic_play_left=0x7f02000f;
public static final int ic_questionmark=0x7f020010;
public static final int ic_readtext=0x7f020011;
public static final int ic_share=0x7f020012;
public static final int ic_speak=0x7f020013;
public static final int ic_trashcan=0x7f020014;
public static final int image_bg=0x7f020015;
public static final int image_bg_click=0x7f020016;
public static final int interakt_logo=0x7f020017;
public static final int symbol_bg=0x7f020018;
public static final int symbol_bg_arrow=0x7f020019;
}
public static final class id {
public static final int action_settings=0x7f0b001b;
public static final int edittext_read=0x7f0b0016;
public static final int edittext_sentence=0x7f0b0000;
public static final int imageButton_config=0x7f0b0014;
public static final int imageButton_edit=0x7f0b0013;
public static final int imageButton_readtext=0x7f0b0012;
public static final int imageButton_speak=0x7f0b0011;
public static final int imageViewDown1=0x7f0b000a;
public static final int imageViewDown2=0x7f0b000b;
public static final int imageViewDown3=0x7f0b000c;
public static final int imageViewL=0x7f0b0001;
public static final int imageViewR=0x7f0b0010;
public static final int imageViewUp1=0x7f0b0003;
public static final int imageViewUp2=0x7f0b0004;
public static final int imageViewUp3=0x7f0b0005;
public static final int read_del=0x7f0b0018;
public static final int read_help=0x7f0b001a;
public static final int read_read=0x7f0b0017;
public static final int read_share=0x7f0b0019;
public static final int readtext_title=0x7f0b0015;
public static final int tableRow1=0x7f0b0002;
public static final int tableRow2=0x7f0b0009;
public static final int textViewDown1=0x7f0b000d;
public static final int textViewDown2=0x7f0b000e;
public static final int textViewDown3=0x7f0b000f;
public static final int textViewUp1=0x7f0b0006;
public static final int textViewUp2=0x7f0b0007;
public static final int textViewUp3=0x7f0b0008;
}
public static final class layout {
public static final int activity_board_root=0x7f030000;
public static final int activity_board_root_backup=0x7f030001;
public static final int activity_edit_root=0x7f030002;
public static final int activity_main=0x7f030003;
public static final int activity_readtext=0x7f030004;
public static final int activity_splash=0x7f030005;
}
public static final class menu {
public static final int intro=0x7f0a0000;
}
public static final class string {
public static final int action_settings=0x7f070004;
public static final int app_name=0x7f070000;
public static final int hello_world=0x7f070005;
public static final int pref_default_display_name=0x7f07000d;
public static final int pref_description_social_recommendations=0x7f07000b;
/** Example settings for Data & Sync
*/
public static final int pref_header_data_sync=0x7f07000f;
/** Strings related to Settings
Example General settings
*/
public static final int pref_header_general=0x7f070009;
/** Example settings for Notifications
*/
public static final int pref_header_notifications=0x7f070012;
public static final int pref_ringtone_silent=0x7f070015;
public static final int pref_title_add_friends_to_messages=0x7f07000e;
public static final int pref_title_display_name=0x7f07000c;
public static final int pref_title_new_message_notifications=0x7f070013;
public static final int pref_title_ringtone=0x7f070014;
public static final int pref_title_social_recommendations=0x7f07000a;
public static final int pref_title_sync_frequency=0x7f070010;
public static final int pref_title_system_sync_settings=0x7f070011;
public static final int pref_title_vibrate=0x7f070016;
public static final int splash_content=0x7f070001;
public static final int string_reader_hint=0x7f070007;
public static final int string_title_reader=0x7f070006;
public static final int title_activity_edit_nodes=0x7f070008;
public static final int title_activity_intro=0x7f070002;
public static final int title_activity_main=0x7f070003;
}
public static final class style {
/**
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
Base application theme for API 11+. This theme completely replaces
AppBaseTheme from res/values/styles.xml on API 11+ devices.
API 11 theme customizations can go here.
Base application theme for API 14+. This theme completely replaces
AppBaseTheme from BOTH res/values/styles.xml and
res/values-v11/styles.xml on API 14+ devices.
API 14 theme customizations can go here.
*/
public static final int AppBaseTheme=0x7f090000;
/** Application theme.
All customizations that are NOT specific to a particular API-level can go here.
*/
public static final int AppTheme=0x7f090001;
public static final int CustomEditText_Style=0x7f090002;
}
public static final class xml {
public static final int bg_generic=0x7f050000;
public static final int pref_data_sync=0x7f050001;
public static final int pref_general=0x7f050002;
public static final int pref_headers=0x7f050003;
public static final int pref_notification=0x7f050004;
}
}
Binary file added ic_launcher-web.png
Binary file added libs/android-support-v4.jar
Binary file not shown.
Loading

0 comments on commit c7be328

Please sign in to comment.