Skip to content

Commit abf19f1

Browse files
committed
Latest version of app
1 parent cb26483 commit abf19f1

File tree

126 files changed

+10801
-7795
lines changed

Some content is hidden

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

126 files changed

+10801
-7795
lines changed

.idea/.name

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

.idea/compiler.xml

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

.idea/copyright/profiles_settings.xml

+2-2
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/misc.xml

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

.idea/modules.xml

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

LICENSE

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 Artur Szymański
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
22+

app/build.gradle

+30-30
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
1-
apply plugin: 'com.android.application'
2-
3-
android {
4-
compileSdkVersion 14
5-
buildToolsVersion "21.1.2"
6-
lintOptions {
7-
checkReleaseBuilds false
8-
abortOnError false
9-
}
10-
compileOptions
11-
{
12-
encoding = 'UTF-8'
13-
}
14-
defaultConfig {
15-
applicationId "pl.edu.uwb.mobiuwb"
16-
minSdkVersion 14
17-
targetSdkVersion 14
18-
}
19-
20-
buildTypes {
21-
release {
22-
minifyEnabled false
23-
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
24-
}
25-
}
26-
}
27-
28-
dependencies {
29-
compile 'com.android.support:support-v4:18.0.0'
30-
}
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
compileSdkVersion 14
5+
buildToolsVersion "21.1.2"
6+
lintOptions {
7+
checkReleaseBuilds false
8+
abortOnError false
9+
}
10+
compileOptions
11+
{
12+
encoding = 'UTF-8'
13+
}
14+
defaultConfig {
15+
applicationId "pl.edu.uwb.mobiuwb"
16+
minSdkVersion 14
17+
targetSdkVersion 14
18+
}
19+
20+
buildTypes {
21+
release {
22+
minifyEnabled false
23+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
24+
}
25+
}
26+
}
27+
28+
dependencies {
29+
compile 'com.android.support:support-v4:18.0.0'
30+
}

app/src/main/AndroidManifest.xml

+79-79
Original file line numberDiff line numberDiff line change
@@ -1,79 +1,79 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="pl.edu.uwb.mobiuwb"
4-
android:versionCode="1"
5-
android:versionName="1.0" >
6-
7-
<uses-sdk
8-
android:minSdkVersion="14"
9-
android:targetSdkVersion="14" />
10-
11-
<uses-permission android:name="android.permission.INTERNET" />
12-
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
13-
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
14-
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
15-
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
16-
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
17-
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
18-
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
19-
20-
<uses-permission
21-
android:name="android.permission.READ_EXTERNAL_STORAGE"
22-
android:maxSdkVersion="18" />
23-
24-
<application
25-
android:name=".MobiUwbApp"
26-
android:allowBackup="true"
27-
android:icon="@drawable/ikona"
28-
android:label="@string/app_name"
29-
android:theme="@style/AppBaseTheme" >
30-
<activity
31-
android:name=".view.splash.SplashScreenActivity"
32-
android:label="@string/app_name"
33-
android:noHistory="true"
34-
android:theme="@style/NoTitleBar" >
35-
<intent-filter>
36-
<action android:name="android.intent.action.MAIN" />
37-
<category android:name="android.intent.category.LAUNCHER" />
38-
</intent-filter>
39-
</activity>
40-
41-
<activity
42-
android:name=".view.mainactivity.MainActivity"
43-
android:configChanges="orientation|screenSize"
44-
android:label="@string/app_name" >
45-
</activity>
46-
<activity
47-
android:name=".view.settings.SettingsActivity"
48-
android:label="@string/title_activity_settings" >
49-
<meta-data
50-
android:name="android.support.PARENT_ACTIVITY"
51-
android:value="pl.edu.uwb.mobiuwb.view.mainactivity.MainActivity" />
52-
</activity>
53-
<activity
54-
android:name=".view.about.AboutActivity"
55-
android:label="@string/about_activity_title" >
56-
</activity>
57-
<activity
58-
android:name=".view.contact.ContactActivity"
59-
android:label="@string/contact_activity_title" >
60-
</activity>
61-
62-
<service android:name=".services.notification.NotificationService" >
63-
</service>
64-
65-
<receiver android:name=".broadcast.DeviceLaunchedBroadcastReceiver" >
66-
<intent-filter>
67-
<action android:name="android.intent.action.BOOT_COMPLETED" />
68-
</intent-filter>
69-
</receiver>
70-
71-
<activity
72-
android:name=".view.somethingWrong.SomethingWrongActivity"
73-
android:theme="@style/NoTitleBar"
74-
android:noHistory="true">
75-
</activity>
76-
77-
</application>
78-
79-
</manifest>
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="pl.edu.uwb.mobiuwb"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<uses-sdk
8+
android:minSdkVersion="14"
9+
android:targetSdkVersion="14" />
10+
11+
<uses-permission android:name="android.permission.INTERNET" />
12+
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
13+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
14+
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
15+
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
16+
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
17+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
18+
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
19+
20+
<uses-permission
21+
android:name="android.permission.READ_EXTERNAL_STORAGE"
22+
android:maxSdkVersion="18" />
23+
24+
<application
25+
android:name=".MobiUwbApp"
26+
android:allowBackup="true"
27+
android:icon="@drawable/ikona"
28+
android:label="@string/app_name"
29+
android:theme="@style/AppBaseTheme" >
30+
<activity
31+
android:name=".view.splash.SplashScreenActivity"
32+
android:label="@string/app_name"
33+
android:noHistory="true"
34+
android:theme="@style/NoTitleBar" >
35+
<intent-filter>
36+
<action android:name="android.intent.action.MAIN" />
37+
<category android:name="android.intent.category.LAUNCHER" />
38+
</intent-filter>
39+
</activity>
40+
41+
<activity
42+
android:name=".view.mainactivity.MainActivity"
43+
android:configChanges="orientation|screenSize"
44+
android:label="@string/app_name" >
45+
</activity>
46+
<activity
47+
android:name=".view.settings.SettingsActivity"
48+
android:label="@string/title_activity_settings" >
49+
<meta-data
50+
android:name="android.support.PARENT_ACTIVITY"
51+
android:value="pl.edu.uwb.mobiuwb.view.mainactivity.MainActivity" />
52+
</activity>
53+
<activity
54+
android:name=".view.about.AboutActivity"
55+
android:label="@string/about_activity_title" >
56+
</activity>
57+
<activity
58+
android:name=".view.contact.ContactActivity"
59+
android:label="@string/contact_activity_title" >
60+
</activity>
61+
62+
<service android:name=".services.notification.NotificationService" >
63+
</service>
64+
65+
<receiver android:name=".broadcast.DeviceLaunchedBroadcastReceiver" >
66+
<intent-filter>
67+
<action android:name="android.intent.action.BOOT_COMPLETED" />
68+
</intent-filter>
69+
</receiver>
70+
71+
<activity
72+
android:name=".view.somethingWrong.SomethingWrongActivity"
73+
android:theme="@style/NoTitleBar"
74+
android:noHistory="true">
75+
</activity>
76+
77+
</application>
78+
79+
</manifest>

app/src/main/assets/properties.xml

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<Properties>
3-
<Configuration
4-
File="http://ii.uwb.edu.pl/mobi/config.xml"/>
5-
6-
<Websites>
7-
<DefaultWebsite
8-
Name="Instytut Informatyki"
9-
URL="http://ii.uwb.edu.pl/mobi/?place=ii&amp;client=android"
10-
Ping="http://ii.uwb.edu.pl/mobi/?place=ii&amp;client=android"/>
11-
<Website
12-
Name="Instytut Informatyki"
13-
URL="http://ii.uwb.edu.pl/mobi/?place=ii&amp;client=android"
14-
Ping="http://ii.uwb.edu.pl/mobi/?place=ii&amp;client=android"/>
15-
<Website
16-
Name="Wydział Filologiczny"
17-
URL="http://ii.uwb.edu.pl/mobi/?place=wf&amp;client=android"
18-
Ping="http://ii.uwb.edu.pl/mobi/?place=wf&amp;client=android"/>
19-
</Websites>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Properties>
3+
<Configuration
4+
File="http://ii.uwb.edu.pl/mobi/config.xml"/>
5+
6+
<Websites>
7+
<DefaultWebsite
8+
Name="Instytut Informatyki"
9+
URL="http://ii.uwb.edu.pl/mobi/?place=ii&amp;client=android"
10+
Ping="http://ii.uwb.edu.pl/mobi/?place=ii&amp;client=android"/>
11+
<Website
12+
Name="Instytut Informatyki"
13+
URL="http://ii.uwb.edu.pl/mobi/?place=ii&amp;client=android"
14+
Ping="http://ii.uwb.edu.pl/mobi/?place=ii&amp;client=android"/>
15+
<Website
16+
Name="Wydział Filologiczny"
17+
URL="http://ii.uwb.edu.pl/mobi/?place=wf&amp;client=android"
18+
Ping="http://ii.uwb.edu.pl/mobi/?place=wf&amp;client=android"/>
19+
</Websites>
2020
</Properties>

0 commit comments

Comments
 (0)