Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions packages/path_provider/path_provider_android/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
## 2.3.0

* Changes internal implementation to use JNI.

## 2.2.23

* Updates build files from Groovy to Kotlin.
Expand Down
11 changes: 0 additions & 11 deletions packages/path_provider/path_provider_android/CONTRIBUTING.md

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
group = "io.flutter.plugins.pathprovider"
version = "1.0-SNAPSHOT"

buildscript {
repositories {
google()
mavenCentral()
}

dependencies {
classpath("com.android.tools.build:gradle:8.13.1")
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The Android Gradle Plugin version 8.13.1 appears to be a typo, as this version does not exist in the Google Maven repository. It is likely intended to be 8.1.3, 8.3.1, or another valid version compatible with the project's Gradle configuration.

}
}

allprojects {
repositories {
google()
mavenCentral()
}
}

plugins {
id("com.android.library")
}

android {
namespace = "io.flutter.plugins.pathprovider"
compileSdk = flutter.compileSdkVersion

defaultConfig {
minSdk = 24
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}

lint {
checkAllWarnings = true
warningsAsErrors = true
disable.addAll(setOf("AndroidGradlePluginVersion", "InvalidPackage", "GradleDependency", "NewerVersionAvailable"))
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

testOptions {
unitTests {
isIncludeAndroidResources = true
isReturnDefaultValues = true
all {
it.outputs.upToDateWhen { false }
it.testLogging {
events("passed", "skipped", "failed", "standardOut", "standardError")
showStandardStreams = true
}
}
}
}
}

dependencies {
implementation("androidx.annotation:annotation:1.9.1")
testImplementation("junit:junit:4.13.2")
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rootProject.name = "path_provider_android"
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.flutter.plugins.pathprovider">
</manifest>
Loading
Loading