File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
java/com/google/firebase/appdistribution/impl Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ dependencies {
60
60
61
61
compileOnly ' com.google.auto.value:auto-value-annotations:1.6.5'
62
62
annotationProcessor ' com.google.auto.value:auto-value:1.6.5'
63
- implementation ' androidx.appcompat:appcompat:1.5 .1'
63
+ implementation ' androidx.appcompat:appcompat:1.3 .1'
64
64
implementation " androidx.browser:browser:1.3.0"
65
65
implementation " androidx.constraintlayout:constraintlayout:2.1.4"
66
66
Original file line number Diff line number Diff line change 18
18
import android .os .Bundle ;
19
19
import android .text .method .LinkMovementMethod ;
20
20
import android .view .View ;
21
+ import android .widget .Button ;
21
22
import android .widget .EditText ;
22
23
import android .widget .ImageView ;
23
24
import android .widget .TextView ;
@@ -63,6 +64,8 @@ private void setupView() {
63
64
TextView infoTextView = this .findViewById (R .id .infoText );
64
65
infoTextView .setText (infoText );
65
66
infoTextView .setMovementMethod (LinkMovementMethod .getInstance ());
67
+ Button submitButton = this .findViewById (R .id .submitButton );
68
+ submitButton .setOnClickListener (this ::submitFeedback );
66
69
67
70
Bitmap thumbnail = readThumbnail ();
68
71
if (thumbnail != null ) {
Original file line number Diff line number Diff line change 36
36
android : layout_width =" wrap_content"
37
37
android : layout_height =" wrap_content"
38
38
android : layout_marginTop =" 24dp"
39
- android : onClick =" submitFeedback"
40
39
android : text =" Submit"
41
40
app : layout_constraintEnd_toEndOf =" parent"
42
41
app : layout_constraintHorizontal_bias =" 0.5"
You can’t perform that action at this time.
0 commit comments