This repository was archived by the owner on Feb 14, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
src/main/java/com/parse/oauth Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,13 @@ android {
1212}
1313
1414dependencies {
15+
16+ api " com.android.support:appcompat-v7:27.1.1"
17+
1518 api ' oauth.signpost:signpost-core:1.2.1.2'
19+
1620 api ' se.akerfeldt:okhttp-signpost:1.1.0'
21+
1722 api ' com.parse:parse-android:1.17.3'
1823
1924 testImplementation ' junit:junit:4.12'
Original file line number Diff line number Diff line change 88 */
99package com .parse .oauth ;
1010
11- import android .app .Dialog ;
1211import android .app .ProgressDialog ;
1312import android .content .Context ;
1413import android .content .DialogInterface ;
1817import android .graphics .drawable .Drawable ;
1918import android .net .Uri ;
2019import android .os .Bundle ;
20+ import android .support .v7 .app .AppCompatDialog ;
2121import android .view .View ;
2222import android .view .ViewGroup ;
2323import android .view .ViewGroup .LayoutParams ;
3131/**
3232 * For internal use.
3333 */
34- public class OAuth1FlowDialog extends Dialog {
34+ public class OAuth1FlowDialog extends AppCompatDialog {
3535 private static final FrameLayout .LayoutParams FILL = new FrameLayout .LayoutParams (
3636 ViewGroup .LayoutParams .FILL_PARENT , ViewGroup .LayoutParams .FILL_PARENT );
3737 private final String callbackUrl ;
You can’t perform that action at this time.
0 commit comments