Skip to content

Commit 4d65584

Browse files
committed
Initial commit
0 parents  commit 4d65584

File tree

90 files changed

+6599
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+6599
-0
lines changed

.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/workspace.xml
5+
/.idea/libraries
6+
.DS_Store
7+
/build
8+
/captures
9+
.externalNativeBuild

.idea/compiler.xml

+22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/profiles_settings.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+73
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

app/app-release.apk

7.7 MB
Binary file not shown.

app/build.gradle

+99
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
apply plugin: 'com.android.application'
2+
apply plugin: 'me.tatarka.retrolambda'
3+
apply plugin: 'realm-android'
4+
5+
buildscript {
6+
repositories {
7+
mavenCentral()
8+
}
9+
10+
dependencies {
11+
classpath 'me.tatarka:gradle-retrolambda:3.2.5'
12+
}
13+
}
14+
15+
repositories {
16+
mavenLocal()
17+
maven { url "https://jitpack.io" }
18+
maven { url "http://dl.bintray.com/ahmedrizwan/maven" }
19+
}
20+
21+
def Properties versionProps = new Properties()
22+
def versionPropsFile = file('version.properties')
23+
if(versionPropsFile.exists())
24+
versionProps.load(new FileInputStream(versionPropsFile))
25+
def code = (versionProps['VERSION_CODE'] ?: "0").toInteger() + 1
26+
versionProps['VERSION_CODE'] = code.toString()
27+
versionProps.store(versionPropsFile.newWriter(), null)
28+
29+
android {
30+
compileSdkVersion 24
31+
buildToolsVersion rootProject.ext.buildToolsVersionVariable
32+
33+
defaultConfig {
34+
applicationId "gridwatch.wit"
35+
minSdkVersion 18
36+
targetSdkVersion 24
37+
versionCode code
38+
versionName "release2"
39+
}
40+
buildTypes {
41+
release {
42+
minifyEnabled false
43+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
44+
}
45+
}
46+
compileOptions {
47+
sourceCompatibility JavaVersion.VERSION_1_8
48+
targetCompatibility JavaVersion.VERSION_1_8
49+
}
50+
}
51+
52+
configurations.all {
53+
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
54+
}
55+
56+
dependencies {
57+
compile group: 'com.polidea.rxandroidble', name: 'rxandroidble', version: '1.0.1', changing: false
58+
compile rootProject.ext.libs.rxjava
59+
compile rootProject.ext.libs.rxandroid
60+
61+
62+
63+
64+
65+
66+
67+
68+
69+
70+
71+
72+
compile fileTree(dir: 'libs', include: ['*.jar'])
73+
74+
75+
compile 'com.android.support:appcompat-v7:24.2.1'
76+
compile 'com.android.support:design:24.2.1'
77+
compile 'com.jakewharton:butterknife:7.0.1'
78+
compile 'com.trello:rxlifecycle:0.5.0'
79+
compile 'com.trello:rxlifecycle-components:0.5.0'
80+
compile 'com.birbit:android-priority-jobqueue:2.0.1'
81+
compile 'com.google.android.gms:play-services-gcm:9.6.1'
82+
compile 'com.squareup.retrofit2:retrofit:2.1.0'
83+
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
84+
compile 'com.squareup.okhttp3:logging-interceptor:3.4.2'
85+
compile 'com.squareup.okhttp3:okhttp:3.4.2'
86+
compile 'com.github.pwittchen:reactivesensors:0.1.2'
87+
compile 'com.orhanobut:logger:1.15'
88+
compile 'com.google.android.gms:play-services-location:9.6.1'
89+
compile 'com.minimize.library:reactiveaudiorecord:1.0.2'
90+
compile 'com.github.pwittchen:reactivenetwork:0.5.2'
91+
compile 'pl.charmas.android:android-reactive-location:0.9@aar'
92+
compile 'com.evernote:android-job:1.1.3'
93+
compile 'com.loopj.android:android-async-http:1.4.9'
94+
compile 'com.github.PhilJay:MPAndroidChart:v3.0.0'
95+
compile 'com.github.javiersantos:AppUpdater:2.4'
96+
compile 'com.google.firebase:firebase-crash:9.6.1'
97+
compile 'com.google.firebase:firebase-messaging:9.6.1'
98+
}
99+
apply plugin: 'com.google.gms.google-services'

app/google-services.json

+99
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
{
2+
"project_info": {
3+
"project_number": "362592391776",
4+
"firebase_url": "https://plugwatch-cfec5.firebaseio.com",
5+
"project_id": "plugwatch-cfec5",
6+
"storage_bucket": "plugwatch-cfec5.appspot.com"
7+
},
8+
"client": [
9+
{
10+
"client_info": {
11+
"mobilesdk_app_id": "1:362592391776:android:d6d0ded709ad1147",
12+
"android_client_info": {
13+
"package_name": "com.polidea.rxandroidble.sample"
14+
}
15+
},
16+
"oauth_client": [
17+
{
18+
"client_id": "362592391776-mdtofgipp826uuf1sh8sfvuusvkt69m5.apps.googleusercontent.com",
19+
"client_type": 1,
20+
"android_info": {
21+
"package_name": "com.polidea.rxandroidble.sample",
22+
"certificate_hash": "404EF05F0FD7F28EF9FE76A089D6958069975D7D"
23+
}
24+
},
25+
{
26+
"client_id": "362592391776-t5vv8ictgei5hg3mohph5kv4rhu9grce.apps.googleusercontent.com",
27+
"client_type": 3
28+
}
29+
],
30+
"api_key": [
31+
{
32+
"current_key": "AIzaSyB-ffIZrCYim6zwhWQhvjDrGJL_hEHWfg4"
33+
}
34+
],
35+
"services": {
36+
"analytics_service": {
37+
"status": 1
38+
},
39+
"appinvite_service": {
40+
"status": 2,
41+
"other_platform_oauth_client": [
42+
{
43+
"client_id": "362592391776-t5vv8ictgei5hg3mohph5kv4rhu9grce.apps.googleusercontent.com",
44+
"client_type": 3
45+
}
46+
]
47+
},
48+
"ads_service": {
49+
"status": 2
50+
}
51+
}
52+
},
53+
{
54+
"client_info": {
55+
"mobilesdk_app_id": "1:362592391776:android:d939a5860f8522e3",
56+
"android_client_info": {
57+
"package_name": "gridwatch.wit"
58+
}
59+
},
60+
"oauth_client": [
61+
{
62+
"client_id": "362592391776-iv4iur2uhhmqgqd6ffha4a72t7rgvl1n.apps.googleusercontent.com",
63+
"client_type": 1,
64+
"android_info": {
65+
"package_name": "gridwatch.wit",
66+
"certificate_hash": "404EF05F0FD7F28EF9FE76A089D6958069975D7D"
67+
}
68+
},
69+
{
70+
"client_id": "362592391776-t5vv8ictgei5hg3mohph5kv4rhu9grce.apps.googleusercontent.com",
71+
"client_type": 3
72+
}
73+
],
74+
"api_key": [
75+
{
76+
"current_key": "AIzaSyB-ffIZrCYim6zwhWQhvjDrGJL_hEHWfg4"
77+
}
78+
],
79+
"services": {
80+
"analytics_service": {
81+
"status": 1
82+
},
83+
"appinvite_service": {
84+
"status": 2,
85+
"other_platform_oauth_client": [
86+
{
87+
"client_id": "362592391776-t5vv8ictgei5hg3mohph5kv4rhu9grce.apps.googleusercontent.com",
88+
"client_type": 3
89+
}
90+
]
91+
},
92+
"ads_service": {
93+
"status": 2
94+
}
95+
}
96+
}
97+
],
98+
"configuration_version": "1"
99+
}

app/libs/TarsosDSP-Android-latest.jar

423 KB
Binary file not shown.

0 commit comments

Comments
 (0)