Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
6d4831c
first commit TouchRecorder for Android
Dec 14, 2016
fe64e1a
deleted folder
Dec 14, 2016
cdfc92a
simplified time calculation
arBmind Dec 14, 2016
14d300f
simplified JSON creation
arBmind Dec 14, 2016
087152a
Merge pull request #1 from arBmind/feature/androidapp
RickorDD Dec 14, 2016
dfbf39f
change String.join to TextUtils.join
Dec 15, 2016
c3e9432
add AlertDialog
RickorDD Dec 16, 2016
636078d
completed AlertDialog
RickorDD Dec 17, 2016
04a49d5
Description height 30dp, setCancelable(false)
RickorDD Dec 17, 2016
aa3876f
optimize Alert Layout and TextView when send to DB
RickorDD Dec 17, 2016
21098e4
optimize and clean code
RickorDD Dec 18, 2016
0cc2e53
add textDesc.setError
RickorDD Jan 17, 2017
b1c2c58
add new JSON Requestformat
RickorDD Jan 17, 2017
0e97ac7
delete 1000 for ms and add JSONObject
RickorDD Jan 22, 2017
66364a6
add archive[]
RickorDD Jan 26, 2017
1800c42
implemented "Challenges"
RickorDD Feb 4, 2017
e20234c
change Challenges URL to herokuapp.com
RickorDD Feb 5, 2017
8919968
change submission URL to herokuapp.com
RickorDD Feb 5, 2017
fa91191
clean code and correction
RickorDD Feb 6, 2017
d0cb8d3
fixed Button Handling
RickorDD Feb 6, 2017
a59ff23
add Cancel Button
RickorDD Feb 8, 2017
e3af6be
scrolls Challenge Dialog and cancelable
RickorDD Feb 8, 2017
c9d472d
change URL touchrecorderweb.herokuapp.com
RickorDD Feb 9, 2017
cebfc61
remove "Draw a"
RickorDD Feb 23, 2017
03fc574
correct URL
RickorDD Apr 19, 2017
62eaf23
V1.0.6 some optimizations
RickorDD Apr 19, 2017
f731ae5
Release V1.0.7 add WaitingDialog
RickorDD Apr 20, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
.idea/
*.iml
*.log
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures
1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .idea/copyright/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

80 changes: 80 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 27 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "24.0.1"

defaultConfig {
applicationId "de.reikodd.ddweki"
minSdkVersion 22
targetSdkVersion 23
versionCode 3
versionName "1.0.7"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.squareup.retrofit2:retrofit:2.2.0'
}
17 changes: 17 additions & 0 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in E:\Android\SDK/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
13 changes: 13 additions & 0 deletions app/src/androidTest/java/de/reikodd/ddweki/ApplicationTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package de.reikodd.ddweki;

import android.app.Application;
import android.test.ApplicationTestCase;

/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
super(Application.class);
}
}
17 changes: 17 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.reikodd.ddweki">

<uses-permission android:name="android.permission.INTERNET" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".MainActivity"
android:label="TouchRecorder">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

</application>

</manifest>
Loading