Rename de.gotify to com.github.gotify
This commit is contained in:
@@ -45,12 +45,12 @@ android_library(
|
|||||||
|
|
||||||
android_build_config(
|
android_build_config(
|
||||||
name = "build_config",
|
name = "build_config",
|
||||||
package = "de.gotify",
|
package = "com.github.gotify",
|
||||||
)
|
)
|
||||||
|
|
||||||
android_resource(
|
android_resource(
|
||||||
name = "res",
|
name = "res",
|
||||||
package = "de.gotify",
|
package = "com.github.gotify",
|
||||||
res = "src/main/res",
|
res = "src/main/res",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -106,7 +106,7 @@ android {
|
|||||||
buildToolsVersion rootProject.ext.buildToolsVersion
|
buildToolsVersion rootProject.ext.buildToolsVersion
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "de.gotify"
|
applicationId "com.github.gotify"
|
||||||
minSdkVersion 16
|
minSdkVersion 16
|
||||||
targetSdkVersion 27
|
targetSdkVersion 27
|
||||||
versionCode 1
|
versionCode 1
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<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.INTERNET" />
|
||||||
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
package de.gotify;
|
package com.github.gotify;
|
||||||
|
|
||||||
import com.facebook.react.ReactPackage;
|
import com.facebook.react.ReactPackage;
|
||||||
import com.facebook.react.bridge.NativeModule;
|
import com.facebook.react.bridge.NativeModule;
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package de.gotify;
|
package com.github.gotify;
|
||||||
|
|
||||||
import java.text.SimpleDateFormat;
|
import java.text.SimpleDateFormat;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package de.gotify;
|
package com.github.gotify;
|
||||||
|
|
||||||
import com.facebook.react.bridge.Callback;
|
import com.facebook.react.bridge.Callback;
|
||||||
import com.facebook.react.bridge.ReactApplicationContext;
|
import com.facebook.react.bridge.ReactApplicationContext;
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package de.gotify;
|
package com.github.gotify;
|
||||||
|
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package de.gotify;
|
package com.github.gotify;
|
||||||
|
|
||||||
import android.app.Application;
|
import android.app.Application;
|
||||||
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package de.gotify;
|
package com.github.gotify;
|
||||||
|
|
||||||
|
|
||||||
import android.app.NotificationChannel;
|
import android.app.NotificationChannel;
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package de.gotify;
|
package com.github.gotify;
|
||||||
|
|
||||||
import android.app.Notification;
|
import android.app.Notification;
|
||||||
import android.app.NotificationManager;
|
import android.app.NotificationManager;
|
||||||
@@ -24,9 +24,10 @@ import java.util.concurrent.atomic.AtomicLong;
|
|||||||
|
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
|
|
||||||
import de.gotify.model.Message;
|
import com.github.gotify.model.Message;
|
||||||
import de.gotify.model.PagedMessages;
|
import com.github.gotify.model.PagedMessages;
|
||||||
import de.gotify.model.Paging;
|
import com.github.gotify.model.Paging;
|
||||||
|
|
||||||
import okhttp3.HttpUrl;
|
import okhttp3.HttpUrl;
|
||||||
import okhttp3.OkHttpClient;
|
import okhttp3.OkHttpClient;
|
||||||
import okhttp3.Request;
|
import okhttp3.Request;
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package de.gotify.model;
|
package com.github.gotify.model;
|
||||||
|
|
||||||
public class Message {
|
public class Message {
|
||||||
private Integer id;
|
private Integer id;
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package de.gotify.model;
|
package com.github.gotify.model;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package de.gotify.model;
|
package com.github.gotify.model;
|
||||||
|
|
||||||
public class Paging {
|
public class Paging {
|
||||||
private int since;
|
private int since;
|
||||||
Reference in New Issue
Block a user