Skip to content

Commit

Permalink
Update to AGP 3.6
Browse files Browse the repository at this point in the history
Summary: Newest version of AGP. Fixes #233

Reviewed By: sjkirby

Differential Revision: D20103032

fbshipit-source-id: 57ffe559c88a0d13049b520a8704fa0f8565490e
  • Loading branch information
xiphirx authored and facebook-github-bot committed Feb 26, 2020
1 parent 6dedde3 commit 2af0200
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ open class PullScreenshotsTask : ScreenshotTask() {
val packageTask = variant.packageApplicationProvider.orNull
?: throw IllegalArgumentException("Can't find package application provider")

apkPath = File(packageTask.outputDirectory, output.outputFileName)
apkPath = File(packageTask.outputDirectory.asFile.get(), output.outputFileName)
}

@TaskAction
Expand Down
2 changes: 1 addition & 1 deletion versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ext {
]

plugs = [
agp : "com.android.tools.build:gradle:3.5.1",
agp : "com.android.tools.build:gradle:3.6.0",
screenshot : "com.facebook.testing.screenshot:plugin:$screenshotTestVersion",
kotlin : "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}",
versions : 'com.github.ben-manes:gradle-versions-plugin:0.20.0'
Expand Down

0 comments on commit 2af0200

Please sign in to comment.