Skip to content

Commit

Permalink
chore(analytics): Migrate Analytics Gradle to declarative plugin blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
tyllark committed Feb 14, 2025
1 parent fd408da commit 9b9e120
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ rootProject.allprojects {
}
}

plugins {
id "com.android.library"
id "kotlin-android"
id "dev.flutter.flutter-gradle-plugin"
}

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

Expand All @@ -34,3 +40,5 @@ android {
namespace 'com.amazonaws.amplify.amplify_analytics_pinpoint'
}

dependencies {}

Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,4 @@ plugins {
id "org.jetbrains.kotlin.android" version "1.9.10" apply false
}

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}

include ":app"

0 comments on commit 9b9e120

Please sign in to comment.