Skip to content

Commit c8b039f

Browse files
committed
Bump version code
1 parent 25e9c59 commit c8b039f

12 files changed

+17
-23
lines changed

README.md

+2-8
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,14 @@ AppleWifiNlpBackend
44

55
Location calculation is done onboard and wifi locations are cached to minimize data usage.
66

7-
Building
8-
--------
9-
Currently does not ship any build system or build system specific files. Use your favourite one.
10-
11-
Building requires Android SDK with API 18 or higher.
12-
137
Used libraries
148
--------------
159
- [UnifiedNlpApi](https://github.com/microg/android_packages_apps_UnifiedNlp)
1610
- [wire-runtime](https://github.com/square/wire)
1711

1812
License
1913
-------
20-
Copyright 2014 μg Project Team
14+
Copyright (C) 2013-2018 microG Project Team
2115

2216
Licensed under the Apache License, Version 2.0 (the "License");
2317
you may not use this file except in compliance with the License.
@@ -31,4 +25,4 @@ License
3125
See the License for the specific language governing permissions and
3226
limitations under the License.
3327

34-
The launcher icon (res/drawable-*/ic_launcher.png) is created using the [Launcher Icon Generator from Android Asset Studio](https://android-ui-utils.googlecode.com/hg/asset-studio/dist/icons-launcher.html) and thus licensed under [CC BY 3.0](http://creativecommons.org/licenses/by/3.0/).
28+
The launcher icon (res/drawable-*/ic_launcher.png) is created using the [Launcher Icon Generator from Android Asset Studio](https://android-ui-utils.googlecode.com/hg/asset-studio/dist/icons-launcher.html) and thus licensed under [CC BY 3.0](http://creativecommons.org/licenses/by/3.0/).

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2016 microG Project Team
2+
* Copyright (C) 2013-2018 microG Project Team
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -26,8 +26,8 @@ buildscript {
2626

2727
/* This is a hack, trying to provide release updates to F-Droid until it can properly handle Gradle
2828
applicationId "org.microg.nlp.backend.apple"
29-
versionName "1.2.2"
30-
versionCode "20038"
29+
versionName "1.2.3"
30+
versionCode "20043"
3131
*/
3232

3333
apply plugin: 'com.android.application'

src/main/AndroidManifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
~ Copyright (C) 2013-2017 microG Project Team
3+
~ Copyright (C) 2013-2018 microG Project Team
44
~
55
~ Licensed under the Apache License, Version 2.0 (the "License");
66
~ you may not use this file except in compliance with the License.

src/main/java/org/microg/nlp/backend/apple/BackendService.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2013-2017 microG Project Team
2+
* Copyright (C) 2013-2018 microG Project Team
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/microg/nlp/backend/apple/LocationRetriever.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2013-2017 microG Project Team
2+
* Copyright (C) 2013-2018 microG Project Team
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/microg/nlp/backend/apple/PregrabActivity.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2013-2017 microG Project Team
2+
* Copyright (C) 2013-2018 microG Project Team
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -203,4 +203,4 @@ protected void draw(Canvas c, MapView osmv, boolean shadow) {
203203
}
204204
}
205205
}
206-
}
206+
}

src/main/java/org/microg/nlp/backend/apple/Request.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2013-2017 microG Project Team
2+
* Copyright (C) 2013-2018 microG Project Team
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/microg/nlp/backend/apple/Response.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2013-2017 microG Project Team
2+
* Copyright (C) 2013-2018 microG Project Team
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/microg/nlp/backend/apple/VerifyingWifiLocationCalculator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2013-2017 microG Project Team
2+
* Copyright (C) 2013-2018 microG Project Team
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/microg/nlp/backend/apple/WifiLocationDatabase.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2013-2017 microG Project Team
2+
* Copyright (C) 2013-2018 microG Project Team
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -190,4 +190,4 @@ public void end() {
190190
}
191191

192192

193-
}
193+
}

src/main/res/values-sr/strings.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
~ Copyright (C) 2013-2017 microG Project Team
3+
~ Copyright (C) 2013-2018 microG Project Team
44
~
55
~ Licensed under the Apache License, Version 2.0 (the "License");
66
~ you may not use this file except in compliance with the License.

src/main/res/values/strings.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
~ Copyright (C) 2013-2017 microG Project Team
3+
~ Copyright (C) 2013-2018 microG Project Team
44
~
55
~ Licensed under the Apache License, Version 2.0 (the "License");
66
~ you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)