Skip to content

Commit 53b5c4b

Browse files
author
Simon Pinfold
committed
0 parents  commit 53b5c4b

File tree

281 files changed

+25662
-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.

281 files changed

+25662
-0
lines changed

.gitignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
syntax: glob
2+
aa-gen/**
3+
gen/**
4+
target/**
5+
build/**
6+
out/**
7+
**/.idea/**
8+
.idea/**
9+
**/*.iml
10+
.gradle/**
11+
**/android/local.properties
12+
**/*.DS_Store
13+
*.pyc
14+
glob:*.apk
15+
glob:proguard_logs
16+
glob:.DS_Store
17+
glob:*.iml
18+
**/android-key.keystore
19+
**/pmd-report.html
20+
**/pmd-report.xml
21+
22+
syntax: regexp
23+
^(local.properties$)

app/build.gradle

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
apply plugin: 'com.android.application'
2+
3+
def getCodeNumber = project.hasProperty('versionNumber') ? versionNumber.toInteger() : 99999
4+
5+
def getVersion() {
6+
return project.hasProperty('versionNumber') ? versionNumber.toInteger() : "local_version"
7+
}
8+
9+
android {
10+
compileSdkVersion 19
11+
buildToolsVersion '19.1.0'
12+
13+
compileOptions {
14+
sourceCompatibility JavaVersion.VERSION_1_7
15+
targetCompatibility JavaVersion.VERSION_1_7
16+
}
17+
18+
defaultConfig {
19+
minSdkVersion 14
20+
targetSdkVersion 19
21+
versionCode getCodeNumber
22+
versionName "0.${getVersion()}"
23+
}
24+
25+
buildTypes {
26+
release {
27+
runProguard false
28+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
29+
}
30+
}
31+
32+
packagingOptions {
33+
exclude 'META-INF/NOTICE.txt'
34+
exclude 'META-INF/NOTICE'
35+
exclude 'META-INF/LICENSE.txt'
36+
exclude 'META-INF/LICENSE'
37+
exclude 'META-INF/license.txt'
38+
exclude 'META-INF/notice.txt'
39+
exclude 'META-INF/ASL2.0'
40+
}
41+
}
42+
43+
dependencies {
44+
compile 'com.android.support:appcompat-v7:19.1.0'
45+
compile 'com.octo.android.robospice:robospice-spring-android:1.4.12' // Network
46+
compile 'com.fasterxml.jackson.core:jackson-databind:2.3.+' // Serialization
47+
compile 'com.viewpagerindicator:library:2.4.1@aar'
48+
compile 'com.nineoldandroids:library:2.4.0'
49+
compile('org.simpleframework:simple-xml:2.7.+') { // Serialization
50+
exclude module: 'stax'
51+
exclude module: 'stax-api'
52+
exclude module: 'xpp3'
53+
}
54+
compile 'net.hockeyapp.android:HockeySDK:3.0.1'
55+
compile fileTree(dir: 'libs', include: ['*.jar'])
56+
}

app/libs/armeabi.jar

1.76 MB
Binary file not shown.

app/libs/flow.jar

17.4 KB
Binary file not shown.

app/libs/flowsip.jar

71.6 KB
Binary file not shown.

app/libs/flowws.jar

560 KB
Binary file not shown.

app/libs/mips.jar

2.06 MB
Binary file not shown.

app/libs/x86.jar

1.94 MB
Binary file not shown.

app/lint.xml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<lint>
3+
<!-- Disable this given check in this project -->
4+
<issue id="InvalidPackage" severity="ignore" />
5+
</lint>

app/proguard-rules.txt

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Add project specific ProGuard rules here.
2+
# By default, the flags in this file are appended to flags specified
3+
# in /opt/android-sdk-linux/tools/proguard/proguard-android.txt
4+
# You can edit the include path and order by changing the ProGuard
5+
# include property in project.properties.
6+
#
7+
# For more details, see
8+
# http://developer.android.com/guide/developing/tools/proguard.html
9+
10+
# Add any project specific keep options here:
11+
12+
# If your project uses WebView with JS, uncomment the following
13+
# and specify the fully qualified class name to the JavaScript interface
14+
# class:
15+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16+
# public *;
17+
#}

app/src/main/AndroidManifest.xml

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
~ <b>Copyright 2014 by Imagination Technologies Limited
4+
~ and/or its affiliated group companies.</b>\n
5+
~ All rights reserved. No part of this software, either
6+
~ material or conceptual may be copied or distributed,
7+
~ transmitted, transcribed, stored in a retrieval system
8+
~ or translated into any human or computer language in any
9+
~ form by any means, electronic, mechanical, manual or
10+
~ other-wise, or disclosed to the third parties without the
11+
~ express written permission of Imagination Technologies
12+
~ Limited, Home Park Estate, Kings Langley, Hertfordshire,
13+
~ WD4 8LZ, U.K.
14+
-->
15+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
16+
package="com.imgtec.hobbyist">
17+
18+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
19+
<uses-permission android:name="android.permission.INTERNET"/>
20+
<uses-permission android:name="android.permission.WAKE_LOCK"/>
21+
<uses-permission android:name="android.permission.WRITE_INTERNAL_STORAGE"/>
22+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
23+
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
24+
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
25+
26+
<application
27+
android:allowBackup="true"
28+
android:icon="@drawable/ic_launcher"
29+
android:label="@string/app_name"
30+
android:theme="@style/HobbyistNoActionBarTheme">
31+
<activity
32+
android:name=".activities.TourActivity"
33+
android:screenOrientation="sensorPortrait"
34+
android:theme="@style/HobbyistActionBarTheme">
35+
</activity>
36+
<activity
37+
android:name=".activities.StartApplicationActivity"
38+
android:screenOrientation="sensorPortrait"
39+
android:theme="@android:style/Theme.NoDisplay">
40+
<intent-filter>
41+
<action android:name="android.intent.action.MAIN"/>
42+
43+
<category android:name="android.intent.category.LAUNCHER"/>
44+
</intent-filter>
45+
</activity>
46+
<activity
47+
android:name=".activities.LogInToFlowActivity"
48+
android:label="@string/log_in_button_text"
49+
android:screenOrientation="sensorPortrait"
50+
android:theme="@style/HobbyistActionBarTheme"
51+
android:windowSoftInputMode="adjustPan">
52+
</activity>
53+
54+
<service
55+
android:name="com.octo.android.robospice.XmlSpringAndroidSpiceService"
56+
android:exported="false"/>
57+
58+
<activity
59+
android:name=".activities.FlowActivity"
60+
android:label="@string/title_activity_flow"
61+
android:screenOrientation="sensorPortrait"
62+
android:theme="@style/HobbyistActionBarTheme"
63+
android:windowSoftInputMode="adjustPan">
64+
</activity>
65+
<activity android:name="net.hockeyapp.android.UpdateActivity"/>
66+
<activity
67+
android:name=".activities.SearchUsersActivity"
68+
android:label="@string/title_activity_search_users"
69+
android:screenOrientation="sensorPortrait"
70+
android:theme="@style/Theme.Base.Light">
71+
</activity>
72+
</application>
73+
74+
</manifest>
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
proxy-user-name=factoryuser
2+
3+
proxy-password=factoryuser
4+
5+
user-map=sip:factoryuser@domain
6+
7+
displayname=factoryuser
8+
9+
10+
11+
callforwardoption=1
12+
13+
callforwardalways=
14+
15+
callforwardonbusy=
16+
17+
callforwardonnoanswer=
18+
19+
donotdisturbflag=0
20+
21+
autoanswerflag=0
22+
23+
autoanswertimeout=60
24+
25+
callparkuri=
26+
27+
rtptimeout=6
28+
29+
callwaitingflag=1
30+
31+
sipprivacylevelslength=0
32+
33+
sipprivacylevels=
34+
35+
sipassertedidentity=
36+
37+
# voice mail uri
38+
voice-mail-uri=
39+
40+
# 0 - Disabled 1- Enabled
41+
mwi-enabled=0
42+
43+
mwiaccounturi=
44+
45+
mwirefreshtimeout=60
46+
47+
mwiusername=
48+
49+
mwipassword=
50+
51+
3wayconfflag=1
52+
53+
[[DISTINCTIVERINGING]]
54+
[RINGING]
55+
5555|101.wav
56+
5556|102.wav
57+
3|3.wav
58+
2x|111.wav
59+
[RINGBACK]
60+
2x|111.wav
61+
5556|112.wav
62+
5555|111.wav
63+
3|3.wav
64+
65+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[[INCOMING]]
2+
3+
4+
[[OUTGOING]]
5+

0 commit comments

Comments
 (0)