Rename de.gotify to com.github.gotify

This commit is contained in:
Jannis Mattheis
2018-06-23 14:25:51 +02:00
parent 08a978b372
commit 091d065a9b
13 changed files with 18 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.gotify">
package="com.github.gotify">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>

View File

@@ -1,4 +1,4 @@
package de.gotify;
package com.github.gotify;
import com.facebook.react.ReactPackage;
import com.facebook.react.bridge.NativeModule;

View File

@@ -1,4 +1,4 @@
package de.gotify;
package com.github.gotify;
import java.text.SimpleDateFormat;
import java.util.ArrayList;

View File

@@ -1,4 +1,4 @@
package de.gotify;
package com.github.gotify;
import com.facebook.react.bridge.Callback;
import com.facebook.react.bridge.ReactApplicationContext;

View File

@@ -1,4 +1,4 @@
package de.gotify;
package com.github.gotify;
import android.content.Intent;

View File

@@ -1,4 +1,4 @@
package de.gotify;
package com.github.gotify;
import android.app.Application;

View File

@@ -1,4 +1,4 @@
package de.gotify;
package com.github.gotify;
import android.app.NotificationChannel;

View File

@@ -1,4 +1,4 @@
package de.gotify;
package com.github.gotify;
import android.app.Notification;
import android.app.NotificationManager;
@@ -24,9 +24,10 @@ import java.util.concurrent.atomic.AtomicLong;
import javax.annotation.Nullable;
import de.gotify.model.Message;
import de.gotify.model.PagedMessages;
import de.gotify.model.Paging;
import com.github.gotify.model.Message;
import com.github.gotify.model.PagedMessages;
import com.github.gotify.model.Paging;
import okhttp3.HttpUrl;
import okhttp3.OkHttpClient;
import okhttp3.Request;

View File

@@ -1,4 +1,4 @@
package de.gotify.model;
package com.github.gotify.model;
public class Message {
private Integer id;

View File

@@ -1,4 +1,4 @@
package de.gotify.model;
package com.github.gotify.model;
import java.util.List;

View File

@@ -1,4 +1,4 @@
package de.gotify.model;
package com.github.gotify.model;
public class Paging {
private int since;