Fix #2593: Migrate to androidX (#2594)

* Update dependencies and migrate to androidX
* Make gradle properties tidy
This commit is contained in:
Vivek Maskara 2019-03-16 16:52:37 +05:30 committed by Adam Jones
parent 5b1b0037c3
commit 57e685cf6c
173 changed files with 518 additions and 506 deletions

View file

@ -1,6 +1,6 @@
package fr.free.nrw.commons.logging;
import android.support.annotation.NonNull;
import androidx.annotation.NonNull;
import android.util.Log;
import org.slf4j.Logger;

View file

@ -3,9 +3,9 @@ package fr.free.nrw.commons.logging;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v4.content.FileProvider;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.core.content.FileProvider;
import org.acra.collector.CrashReportData;
import org.acra.sender.ReportSender;