Skip to content

Commit f1793b9

Browse files
Change plugin ID to io.github.davideagostini.analyzer
1 parent 3ed08e0 commit f1793b9

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ Add the plugin to your `settings.gradle.kts`:
4343

4444
```kotlin
4545
plugins {
46-
id("com.davideagostini.analyzer") version "1.0.1"
46+
id("io.github.davideagostini.analyzer") version "1.0.1"
4747
}
4848
```
4949

5050
Or in Groovy `settings.gradle`:
5151

5252
```groovy
5353
plugins {
54-
id 'com.davideagostini.analyzer' version '1.0.1'
54+
id 'io.github.davideagostini.analyzer' version '1.0.1'
5555
}
5656
```
5757

@@ -80,7 +80,7 @@ pluginManagement {
8080
}
8181

8282
plugins {
83-
id("com.davideagostini.analyzer") version "1.0.1"
83+
id("io.github.davideagostini.analyzer") version "1.0.1"
8484
}
8585
```
8686

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ gradlePlugin {
4040
vcsUrl.set("https://github.com/davideagostini/android-build-analyzer")
4141
plugins {
4242
create("androidBuildAnalyzer") {
43-
id = "com.davideagostini.analyzer"
43+
id = "io.github.davideagostini.analyzer"
4444
displayName = "Android Build Analyzer"
4545
description = "Gradle plugin for Android security and performance analysis"
4646
implementationClass = "com.davideagostini.analyzer.AndroidBuildAnalyzerPlugin"

docs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ pluginManagement {
174174
// build.gradle.kts
175175
plugins {
176176
id("com.android.application")
177-
id("com.davideagostini.analyzer") version "1.0.1"
177+
id("io.github.davideagostini.analyzer") version "1.0.1"
178178
}
179179
```
180180

@@ -422,7 +422,7 @@ Ensure you have an Android application or library plugin applied:
422422
```kotlin
423423
plugins {
424424
id("com.android.application") // or com.android.library
425-
id("com.davideagostini.analyzer")
425+
id("io.github.davideagostini.analyzer")
426426
}
427427
```
428428

test-app/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id("com.android.application")
33
id("org.jetbrains.kotlin.android")
4-
id("com.davideagostini.analyzer")
4+
id("io.github.davideagostini.analyzer")
55
}
66

77
android {

0 commit comments

Comments
 (0)