Skip to content

Commit 3e3f1fc

Browse files
committed
Remove artifact files, make new internal api private, and pull in latest changes from main branch.
This should be in a good state to merge after this. We need to followup with a change to create a FirebaseCrashlyticsInternal interface with the new internal api.
1 parent 4fb804b commit 3e3f1fc

File tree

10 files changed

+2
-374
lines changed

10 files changed

+2
-374
lines changed

aar/repository/com/google/firebase/firebase-crashlytics-ktx/18.2.9-SNAPSHOT/firebase-crashlytics-ktx-18.2.9-SNAPSHOT.pom

Lines changed: 0 additions & 108 deletions
This file was deleted.

aar/repository/com/google/firebase/firebase-crashlytics-ktx/18.2.9-SNAPSHOT/maven-metadata-local.xml

Lines changed: 0 additions & 30 deletions
This file was deleted.

aar/repository/com/google/firebase/firebase-crashlytics-ktx/maven-metadata-local.xml

Lines changed: 0 additions & 12 deletions
This file was deleted.

aar/repository/com/google/firebase/firebase-crashlytics/18.2.9-SNAPSHOT/firebase-crashlytics-18.2.9-SNAPSHOT.pom

Lines changed: 0 additions & 186 deletions
This file was deleted.

aar/repository/com/google/firebase/firebase-crashlytics/18.2.9-SNAPSHOT/maven-metadata-local.xml

Lines changed: 0 additions & 24 deletions
This file was deleted.

aar/repository/com/google/firebase/firebase-crashlytics/maven-metadata-local.xml

Lines changed: 0 additions & 12 deletions
This file was deleted.

firebase-crashlytics/src/main/java/com/google/firebase/crashlytics/FirebaseCrashlytics.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,8 @@ public void recordException(@NonNull Throwable throwable) {
202202
}
203203

204204
/** Records a fatal report and sends to Crashlytics on-demand. */
205-
// TODO(mrober): Remove this after testing, and let the plugin call CrashlyticsCore directly.
206-
public void recordFatalException(Throwable throwable) {
205+
// TODO(mrober): Move this to a FirebaseCrashlyticsInternal interface.
206+
private void recordFatalException(Throwable throwable) {
207207
if (throwable == null) {
208208
Logger.getLogger().w("A null value was passed to recordFatalException. Ignoring.");
209209
return;

0 commit comments

Comments
 (0)