Skip to content

Migrate vendor plugin to new transform api. #4424

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Jan 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
13 changes: 0 additions & 13 deletions appcheck/firebase-appcheck/ktx/src/androidTest/AndroidManifest.xml

This file was deleted.

4 changes: 2 additions & 2 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ dependencies {
implementation("org.eclipse.jgit:org.eclipse.jgit:6.3.0.202209071007-r")

implementation("com.google.code.gson:gson:2.8.9")
implementation("com.android.tools.build:gradle:7.2.2")
implementation("com.android.tools.build:builder-test-api:7.2.2")
implementation("com.android.tools.build:gradle:7.4.0")
implementation("com.android.tools.build:builder-test-api:7.4.0")
implementation("gradle.plugin.com.github.sherter.google-java-format:google-java-format-gradle-plugin:0.9")

testImplementation("junit:junit:4.13.2")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,20 +90,6 @@ public void apply(Project project) {
test.systemProperty("javax.net.ssl.trustStoreType", "JKS");
})));

// skip debug tests in CI
// TODO(vkryachko): provide ability for teams to control this if needed
if (System.getenv().containsKey("FIREBASE_CI")) {
android.setTestBuildType("release");
project
.getTasks()
.all(
task -> {
if ("testDebugUnitTest".equals(task.getName())) {
task.setEnabled(false);
}
});
}

setupApiInformationAnalysis(project, android);
android.testServer(new FirebaseTestServer(project, firebaseLibrary.testLab, android));

Expand Down
Loading