Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fbcf924c authored by Nihar Thakkar's avatar Nihar Thakkar
Browse files

Merge remote-tracking branch 'origin/change_package_name'

# Conflicts:
#	app/src/main/java/foundation/e/notes/android/fragment/PreferencesFragment.java
#	app/src/main/java/foundation/e/notes/persistence/NoteServerSyncHelper.java
#	app/src/main/java/foundation/e/notes/util/NotesClient.java
#	app/src/main/java/foundation/e/notes/util/NotesClientUtil.java
#	app/src/main/java/foundation/e/notes/util/SupportUtil.java
parents 60174831 65573c04
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -8,8 +8,8 @@ An android client for [Nextcloud Notes App](https://github.com/nextcloud/notes/)

## :arrow_forward: Access

[![Download from Google Play](https://play.google.com/intl/en_us/badges/images/badge_new.png)](https://play.google.com/store/apps/details?id=it.niedermann.owncloud.notes)
[![Nextcloud Notes App on fdroid.org](https://camo.githubusercontent.com/7df0eafa4433fa4919a56f87c3d99cf81b68d01c/68747470733a2f2f662d64726f69642e6f72672f77696b692f696d616765732f632f63342f462d44726f69642d627574746f6e5f617661696c61626c652d6f6e2e706e67)](https://f-droid.org/repository/browse/?fdid=it.niedermann.owncloud.notes)
[![Download from Google Play](https://play.google.com/intl/en_us/badges/images/badge_new.png)](https://play.google.com/store/apps/details?id=it.niedermann.notes)
[![Nextcloud Notes App on fdroid.org](https://camo.githubusercontent.com/7df0eafa4433fa4919a56f87c3d99cf81b68d01c/68747470733a2f2f662d64726f69642e6f72672f77696b692f696d616765732f632f63342f462d44726f69642d627574746f6e5f617661696c61626c652d6f6e2e706e67)](https://f-droid.org/repository/browse/?fdid=it.niedermann.notes)
[![Donate with PayPal](https://raw.githubusercontent.com/stefan-niedermann/paypal-donate-button/master/paypal-donate-button.png)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=K7HVLE6J7SXXA)
[![Donate using Liberapay](https://liberapay.com/assets/widgets/donate.svg)](https://liberapay.com/stefan-niedermann/donate)

@@ -38,7 +38,7 @@ An android client for [Nextcloud Notes App](https://github.com/nextcloud/notes/)
* [Pick a good first issue](https://github.com/nextcloud/server/labels/good%20first%20issue) :notebook:
* Create a [Pull Request](https://opensource.guide/how-to-contribute/#opening-a-pull-request)
* Help translating this app on [Transifex](https://www.transifex.com/nextcloud/nextcloud/android-notes/) :flags:
* Buy this app on [Google Play Store](https://play.google.com/store/apps/details?id=it.niedermann.owncloud.notes)
* Buy this app on [Google Play Store](https://play.google.com/store/apps/details?id=it.niedermann.notes)
* Send me a bottle of your favorite beer :beers: :wink:

## :link: Requirements
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ android {
    buildToolsVersion '28.0.3'

    defaultConfig {
        applicationId "it.niedermann.owncloud.notes"
        applicationId "foundation.e.notes"
        minSdkVersion 24
        targetSdkVersion 28
        versionCode 37
+12 −12
Original line number Diff line number Diff line
package it.niedermann.owncloud.notes;
package foundation.e.notes;

import android.app.Application;
import android.test.ApplicationTestCase;
+1 −1
Original line number Diff line number Diff line
package it.niedermann.owncloud.notes.model;
package foundation.e.notes.model;

import junit.framework.TestCase;

+1 −1
Original line number Diff line number Diff line
package it.niedermann.owncloud.notes.util;
package foundation.e.notes.util;

import junit.framework.TestCase;

Loading