Skip to content
This repository has been archived by the owner on Feb 4, 2020. It is now read-only.

Commit

Permalink
Fix package id
Browse files Browse the repository at this point in the history
  • Loading branch information
friesenkiwi committed Jun 1, 2018
1 parent 33f6679 commit d513c84
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ android {
buildToolsVersion '26.0.0'

defaultConfig {
applicationId "com.anysoftkeyboard.languagepack.Afrikaans"
applicationId "com.anysoftkeyboard.languagepack.afrikaans"
minSdkVersion 7
targetSdkVersion 26
versionName versionData.versionName
Expand Down
4 changes: 2 additions & 2 deletions src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.anysoftkeyboard.languagepack.languagepack">
package="com.anysoftkeyboard.languagepack.afrikaans">

<supports-screens
android:anyDensity="true"
Expand All @@ -14,7 +14,7 @@
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name">
<receiver
android:name="com.anysoftkeyboard.languagepack.languagepack.PackBroadcastReceiver"
android:name="com.anysoftkeyboard.languagepack.afrikaans.PackBroadcastReceiver"
android:exported="true">
<intent-filter>
<action android:name="com.menny.android.anysoftkeyboard.KEYBOARD" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package com.anysoftkeyboard.languagepack.languagepack;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;

public class PackBroadcastReceiver extends BroadcastReceiver {

@Override
public void onReceive(Context arg0, Intent arg1) {

}

}
package com.anysoftkeyboard.languagepack.afrikaans;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;

public class PackBroadcastReceiver extends BroadcastReceiver {

@Override
public void onReceive(Context arg0, Intent arg1) {

}

}

0 comments on commit d513c84

Please sign in to comment.