New app: DeskCon

This commit is contained in:
Boris Kraut 2014-10-19 14:44:23 +02:00
parent 9934c259df
commit fe8e16fcf8
2 changed files with 98 additions and 0 deletions

View file

@ -0,0 +1,33 @@
Categories:Office
License:GPLv3
Web Site:https://github.com/screenfreeze/deskcon-android/blob/HEAD/README.md
Source Code:https://github.com/screenfreeze/deskcon-android
Issue Tracker:https://github.com/screenfreeze/deskcon-android/issues
Auto Name:DeskCon
Summary:Integrate mobile devices with a desktop
Description:
Receive notifications, files and commands from your mobile device on your
desktop PC. The data is send via a secure TLS connection. The connection is
encrypted and authenticated with self-signed Certificates (RSA-2048 PK).
Also, the app is designed to be very battery friendly.
Requires [https://github.com/screenfreeze/deskcon-desktop Deskcon-Desktop] on your PC.
[https://github.com/screenfreeze/deskcon-android/blob/HEAD/CHANGELOG Changelog]
.
Repo Type:git
Repo:https://github.com/screenfreeze/deskcon-android
Build:0.3,10
commit=4ba914e3abba5a977bf39facfb9fe4453f2bcc2e
rm=libs/*
patch=deskcon-gradle.patch
gradle=yes
Auto Update Mode:None
Update Check Mode:RepoManifest
Current Version:0.3
Current Version Code:10

View file

@ -0,0 +1,65 @@
diff --git a/build.gradle b/build.gradle
index e69de29..6bd0ad1 100644
--- a/build.gradle
+++ b/build.gradle
@@ -0,0 +1,60 @@
+buildscript {
+ repositories {
+ mavenCentral()
+ }
+
+ dependencies {
+ classpath 'com.android.tools.build:gradle:0.12.2'
+ }
+}
+
+apply plugin: 'com.android.application'
+
+android {
+ compileSdkVersion 19
+ buildToolsVersion '19.1'
+
+ defaultConfig {
+ minSdkVersion 9
+ targetSdkVersion 19
+ }
+
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_7
+ targetCompatibility JavaVersion.VERSION_1_7
+ }
+
+ packagingOptions {
+ exclude 'META-INF/LICENSE.txt'
+ exclude 'META-INF/NOTICE.txt'
+ }
+
+ sourceSets {
+ main {
+ manifest.srcFile 'AndroidManifest.xml'
+ java.srcDirs = ['src']
+ resources.srcDirs = ['src']
+ aidl.srcDirs = ['src']
+ renderscript.srcDirs = ['src']
+ res.srcDirs = ['res']
+ assets.srcDirs = ['assets']
+ }
+ }
+
+ lintOptions {
+ abortOnError false
+ }
+
+ repositories {
+ mavenCentral()
+ mavenLocal()
+ }
+
+ dependencies {
+ compile 'com.android.support:support-v4:19.0.+'
+ compile 'com.madgag.spongycastle:core:1.51.0.0'
+ compile 'com.madgag.spongycastle:prov:1.51.0.0'
+ compile 'com.madgag.spongycastle:pkix:1.51.0.0'
+ compile 'com.madgag.spongycastle:pg:1.51.0.0'
+ }
+}