Skip to content
This repository was archived by the owner on Feb 1, 2024. It is now read-only.

Commit d3376a2

Browse files
authored
build: rename android package (#58)
Renames android package from default `com.reactlibrary` to `org.hyperledger.indy.sdk.reactnative` Signed-off-by: Niall Shaw <[email protected]>
1 parent a2d1ad0 commit d3376a2

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def configureReactNativePom(def pom) {
100100
name packageJson.title
101101
artifactId packageJson.name
102102
version = packageJson.version
103-
group = "com.reactlibrary"
103+
group = "org.hyperledger.indy.sdk.reactnative"
104104
description packageJson.description
105105
url packageJson.repository.baseUrl
106106

android/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
-->
1616
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
17-
package="com.reactlibrary">
17+
package="org.hyperledger.indy.sdk.reactnative">
1818
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
1919
</manifest>

android/src/main/java/com/reactlibrary/IndySdkModule.java renamed to android/src/main/java/org/hyperledger/indy/sdk/reactnative/IndySdkModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.reactlibrary;
17+
package org.hyperledger.indy.sdk.reactnative;
1818

1919
import android.annotation.TargetApi;
2020
import android.util.Log;

android/src/main/java/com/reactlibrary/IndySdkPackage.java renamed to android/src/main/java/org/hyperledger/indy/sdk/reactnative/IndySdkPackage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.reactlibrary;
17+
package org.hyperledger.indy.sdk.reactnative;
1818

1919
import java.util.Arrays;
2020
import java.util.Collections;

0 commit comments

Comments
 (0)