Skip to content

Commit f7bb73d

Browse files
committed
Temporary disable contribution
1 parent 21f6bd2 commit f7bb73d

File tree

8 files changed

+192
-8
lines changed

8 files changed

+192
-8
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,5 @@ out/
55
build/
66
*.apk
77
.gradle/
8-
gradle/
9-
gradlew
108
user.gradle
119
local.properties

gradle/wrapper/gradle-wrapper.jar

48.7 KB
Binary file not shown.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#
2+
# Copyright 2013-2015 µg Project Team
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
#
16+
17+
#Wed Jan 14 11:55:04 CET 2015
18+
distributionBase=GRADLE_USER_HOME
19+
distributionPath=wrapper/dists
20+
zipStoreBase=GRADLE_USER_HOME
21+
zipStorePath=wrapper/dists
22+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip

gradlew

Lines changed: 164 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
-->
1616
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
1717
package="org.microg.nlp.backend.ichnaea"
18-
android:versionCode="10000"
19-
android:versionName="1.0.0">
18+
android:versionCode="10100"
19+
android:versionName="1.1.0">
2020

2121
<uses-sdk
2222
android:minSdkVersion="10"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ private void reloadSettings() {
116116
.build();
117117
((NotificationManager) getSystemService(NOTIFICATION_SERVICE)).notify(0, notification);
118118
} else {
119-
submit = preferences.getBoolean("submit_data", false);
119+
submit = false; //preferences.getBoolean("submit_data", false);
120120
nickname = preferences.getString("nickname", null);
121121
if (nickname == null) nickname = "";
122122
if (submit)

src/main/res/values/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
-->
1616

1717
<resources>
18-
<string name="app_name">Mozilla Location Service</string>
18+
<string name="app_name">Mozilla UnifiedNlp Backend</string>
1919
<string name="backend_name">Mozilla Location Service</string>
2020
<string name="summary">Locate using Mozilla\'s online database</string>
2121

src/main/res/xml/preferences.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
1818

19-
<PreferenceCategory android:title="@string/pref_category_submit">
19+
<!-- <PreferenceCategory android:title="@string/pref_category_submit">
2020
<CheckBoxPreference
2121
android:key="submit_data"
2222
android:title="@string/pref_title_submit_data"
@@ -28,7 +28,7 @@
2828
android:title="@string/pref_title_nickname"
2929
android:summary="@string/pref_description_nickname"
3030
android:defaultValue="" />
31-
</PreferenceCategory>
31+
</PreferenceCategory>-->
3232

3333
<PreferenceCategory android:title="@string/pref_category_source">
3434
<CheckBoxPreference

0 commit comments

Comments
 (0)