Skip to content

Commit c8dc20c

Browse files
authored
readme updates for publish changes (#343)
* Update README.md * Update network README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * groupId refactor * Update README.md * refactor
1 parent 47987c2 commit c8dc20c

File tree

10 files changed

+33
-33
lines changed

10 files changed

+33
-33
lines changed

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Android Pluto
22

3-
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.plutolib/pluto/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.plutolib/pluto)
3+
![Maven Central Version](https://img.shields.io/maven-central/v/com.androidpluto/pluto)
44
[![CLA assistant](https://cla-assistant.io/readme/badge/androidPluto/pluto)](https://cla-assistant.io/androidPluto/pluto)
55
[![Daily Builds](https://github.com/androidPluto/pluto/actions/workflows/daily_builds.yml/badge.svg)](https://github.com/androidPluto/pluto/actions/workflows/daily_builds.yml)
66

@@ -16,16 +16,16 @@ It comes with a UI to monitor and share the information, as well as APIs to acce
1616

1717
### Add Gradle Dependencies
1818

19-
Pluto is distributed through [***mavenCentral***](https://central.sonatype.com/artifact/com.plutolib/pluto). To use it, you need to add the following Gradle dependency to your build.gradle file of your app module.
19+
Pluto is distributed through [***mavenCentral***](https://central.sonatype.com/artifact/com.androidpluto/pluto). To use it, you need to add the following Gradle dependency to your build.gradle file of your app module.
2020

2121
> Note: add both the `pluto` and the `pluto-no-op` variant to isolate Pluto from release builds.
2222
```groovy
23-
def plutoVersion = "2.2.1"
23+
def plutoVersion = "3.0.0"
2424
2525
dependencies {
2626
....
27-
debugImplementation "com.plutolib:pluto:$plutoVersion"
28-
releaseImplementation "com.plutolib:pluto-no-op:$plutoVersion"
27+
debugImplementation "com.androidpluto:pluto:$plutoVersion"
28+
releaseImplementation "com.androidpluto:pluto-no-op:$plutoVersion"
2929
....
3030
}
3131
```
@@ -49,8 +49,8 @@ Plugin bundle comes with all the basic plugins bundled together as single depend
4949
```groovy
5050
dependencies {
5151
....
52-
debugImplementation "com.plutolib.plugins:bundle-core:$plutoVersion"
53-
releaseImplementation "com.plutolib.plugins:bundle-core-no-op:$plutoVersion"
52+
debugImplementation "com.androidpluto.plugins:bundle-core:$plutoVersion"
53+
releaseImplementation "com.androidpluto.plugins:bundle-core-no-op:$plutoVersion"
5454
....
5555
}
5656
```
@@ -65,7 +65,7 @@ But, if you want to use individual plugins, here is the list of some plugins pro
6565
- **[Datastore Preferences Plugin](pluto-plugins/plugins/datastore)**
6666
- **[Layout Inspector Plugin](pluto-plugins/plugins/layout-inspector)**
6767

68-
We will be adding more to the [list](https://central.sonatype.com/search?q=com.plutolib.plugins). So please stay tuned.<br>
68+
We will be adding more to the [list](https://central.sonatype.com/search?q=com.androidpluto.plugins). So please stay tuned.<br>
6969
Please refer to their respective README for integration steps.
7070
<br><br>
7171
> You can also help us expand the Pluto ecosystem now. <br>Pluto now allows to develop custom debuggers as plugin. Read [Develop Custom Plugins](https://github.com/androidPluto/pluto/wiki/Develop-Custom-Pluto-Plugins-(Beta)).
@@ -125,7 +125,7 @@ Have an idea to improve Pluto? Let's connect on
125125
## 📃 &nbsp;License
126126

127127
```
128-
Copyright 2021 Plutolib.
128+
Copyright 2021 Android Pluto.
129129
130130
Licensed under the Apache License, Version 2.0 (the "License");
131131
you may not use this file except in compliance with the License.

SUBMIT_GUIDELINES.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ Once you have enough information, lets jump into development.
2222
- Setup your Maven configuration, like given below
2323
``` groovy
2424
ext {
25-
PUBLISH_GROUP_ID = "com.plutolib.plugins" // do not change this
26-
PUBLISH_VERSION = verPublish // do not change this
25+
PUBLISH_GROUP_ID = "com.androidpluto.plugins" // do not change this
26+
PUBLISH_VERSION = verPublish // do not change this
2727
PUBLISH_ARTIFACT_ID = 'PLUGIN_NAME'
2828
}
2929
```

pluto-plugins/plugins/datastore/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33

44
### Add Gradle Dependencies
5-
Pluto Datastore Preferences is distributed through [***mavenCentral***](https://central.sonatype.com/artifact/com.plutolib.plugins/datastore-pref). To use it, you need to add the following Gradle dependency to your build.gradle file of you android app module.
5+
Pluto Datastore Preferences is distributed through [***mavenCentral***](https://central.sonatype.com/artifact/com.androidpluto.plugins/datastore-pref). To use it, you need to add the following Gradle dependency to your build.gradle file of you android app module.
66

77
> Note: add the `no-op` variant to isolate the plugin from release builds.
88
```groovy
99
dependencies {
10-
debugImplementation "com.plutolib.plugins:datastore-pref:$plutoVersion"
11-
releaseImplementation "com.plutolib.plugins:datastore-pref-no-op:$plutoVersion"
10+
debugImplementation "com.androidpluto.plugins:datastore-pref:$plutoVersion"
11+
releaseImplementation "com.androidpluto.plugins:datastore-pref-no-op:$plutoVersion"
1212
}
1313
```
1414
<br>

pluto-plugins/plugins/exceptions/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33

44
### Add Gradle Dependencies
5-
Pluto Exceptions is distributed through [***mavenCentral***](https://central.sonatype.com/artifact/com.plutolib.plugins/exceptions). To use it, you need to add the following Gradle dependency to your build.gradle file of you android app module.
5+
Pluto Exceptions is distributed through [***mavenCentral***](https://central.sonatype.com/artifact/com.androidpluto.plugins/exceptions). To use it, you need to add the following Gradle dependency to your build.gradle file of you android app module.
66

77
> Note: add the `no-op` variant to isolate the plugin from release builds.
88
```groovy
99
dependencies {
10-
debugImplementation "com.plutolib.plugins:exceptions:$plutoVersion"
11-
releaseImplementation "com.plutolib.plugins:exceptions-no-op:$plutoVersion"
10+
debugImplementation "com.androidpluto.plugins:exceptions:$plutoVersion"
11+
releaseImplementation "com.androidpluto.plugins:exceptions-no-op:$plutoVersion"
1212
}
1313
```
1414
<br>

pluto-plugins/plugins/layout-inspector/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33

44
### Add Gradle Dependencies
5-
Pluto Layout Inspector is distributed through [***mavenCentral***](https://central.sonatype.com/artifact/com.plutolib.plugins/layout-inspector). To use it, you need to add the following Gradle dependency to your build.gradle file of you android app module.
5+
Pluto Layout Inspector is distributed through [***mavenCentral***](https://central.sonatype.com/artifact/com.androidpluto.plugins/layout-inspector). To use it, you need to add the following Gradle dependency to your build.gradle file of you android app module.
66

77
> Note: add the `no-op` variant to isolate the plugin from release builds.
88
```groovy
99
dependencies {
10-
debugImplementation "com.plutolib.plugins:layout-inspector:$plutoVersion"
11-
releaseImplementation "com.plutolib.plugins:layout-inspector-no-op:$plutoVersion"
10+
debugImplementation "com.androidpluto.plugins:layout-inspector:$plutoVersion"
11+
releaseImplementation "com.androidpluto.plugins:layout-inspector-no-op:$plutoVersion"
1212
}
1313
```
1414
<br>

pluto-plugins/plugins/logger/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33

44
### Add Gradle Dependencies
5-
Pluto Logger is distributed through [***mavenCentral***](https://central.sonatype.com/artifact/com.plutolib.plugins/logger). To use it, you need to add the following Gradle dependency to your build.gradle file of you android app module.
5+
Pluto Logger is distributed through [***mavenCentral***](https://central.sonatype.com/artifact/com.androidpluto.plugins/logger). To use it, you need to add the following Gradle dependency to your build.gradle file of you android app module.
66

77
> Note: add the `no-op` variant to isolate the plugin from release builds.
88
```groovy
99
dependencies {
10-
debugImplementation "com.plutolib.plugins:logger:$plutoVersion"
11-
releaseImplementation "com.plutolib.plugins:logger-no-op:$plutoVersion"
10+
debugImplementation "com.androidpluto.plugins:logger:$plutoVersion"
11+
releaseImplementation "com.androidpluto.plugins:logger-no-op:$plutoVersion"
1212
}
1313
```
1414
<br>

pluto-plugins/plugins/network/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33

44
### Add Gradle Dependencies
5-
Pluto Network is distributed through [***mavenCentral***](https://central.sonatype.com/artifact/com.plutolib.plugins/network). To use it, you need to add the following Gradle dependency to your build.gradle file of you android app module.
5+
Pluto Network is distributed through [***mavenCentral***](https://central.sonatype.com/artifact/com.androidpluto.plugins/network). To use it, you need to add the following Gradle dependency to your build.gradle file of you android app module.
66

77
> Note: add the `no-op` variant to isolate the plugin from release builds.
88
```groovy
99
dependencies {
10-
debugImplementation "com.plutolib.plugins:network:$plutoVersion"
11-
releaseImplementation "com.plutolib.plugins:network-no-op:$plutoVersion"
10+
debugImplementation "com.androidpluto.plugins:network:$plutoVersion"
11+
releaseImplementation "com.androidpluto.plugins:network-no-op:$plutoVersion"
1212
}
1313
```
1414
<br>

pluto-plugins/plugins/rooms-database/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33

44
### Add Gradle Dependencies
5-
Pluto Rooms Database is distributed through [***mavenCentral***](https://central.sonatype.com/artifact/com.plutolib.plugins/rooms-db). To use it, you need to add the following Gradle dependency to your build.gradle file of you android app module.
5+
Pluto Rooms Database is distributed through [***mavenCentral***](https://central.sonatype.com/artifact/com.androidpluto.plugins/rooms-db). To use it, you need to add the following Gradle dependency to your build.gradle file of you android app module.
66

77
> Note: add the `no-op` variant to isolate the plugin from release builds.
88
```groovy
99
dependencies {
10-
debugImplementation "com.plutolib.plugins:rooms-db:$plutoVersion"
11-
releaseImplementation "com.plutolib.plugins:rooms-db-no-op:$plutoVersion"
10+
debugImplementation "com.androidpluto.plugins:rooms-db:$plutoVersion"
11+
releaseImplementation "com.androidpluto.plugins:rooms-db-no-op:$plutoVersion"
1212
}
1313
```
1414
<br>

pluto-plugins/plugins/shared-preferences/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33

44
### Add Gradle Dependencies
5-
Pluto Shared Preferences is distributed through [***mavenCentral***](https://central.sonatype.com/artifact/com.plutolib.plugins/preferences). To use it, you need to add the following Gradle dependency to your build.gradle file of you android app module.
5+
Pluto Shared Preferences is distributed through [***mavenCentral***](https://central.sonatype.com/artifact/com.androidpluto.plugins/preferences). To use it, you need to add the following Gradle dependency to your build.gradle file of you android app module.
66

77
> Note: add the `no-op` variant to isolate the plugin from release builds.
88
```groovy
99
dependencies {
10-
debugImplementation "com.plutolib.plugins:preferences:$plutoVersion"
11-
releaseImplementation "com.plutolib.plugins:preferences-no-op:$plutoVersion"
10+
debugImplementation "com.androidpluto.plugins:preferences:$plutoVersion"
11+
releaseImplementation "com.androidpluto.plugins:preferences-no-op:$plutoVersion"
1212
}
1313
```
1414
<br>

pluto/lib/src/main/AndroidManifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
android:name=".ui.container.PlutoActivity"
1616
android:exported="false"
1717
android:launchMode="singleTask"
18-
android:taskAffinity="com.plutolib"
18+
android:taskAffinity="com.androidpluto"
1919
android:theme="@style/PlutoContainerTheme"
2020
android:windowSoftInputMode="stateUnspecified|adjustResize" />
2121
<activity

0 commit comments

Comments
 (0)