Fix store screenshot generator
This commit is contained in:
parent
287de66e0c
commit
f58b4c2989
|
@ -91,8 +91,8 @@ dependencies {
|
||||||
appcenterPublicBetaImplementation "com.microsoft.appcenter:appcenter-crashes:${appCenterSdkVersion}"
|
appcenterPublicBetaImplementation "com.microsoft.appcenter:appcenter-crashes:${appCenterSdkVersion}"
|
||||||
appcenterPublicBetaImplementation "com.microsoft.appcenter:appcenter-distribute:${appCenterSdkVersion}"
|
appcenterPublicBetaImplementation "com.microsoft.appcenter:appcenter-distribute:${appCenterSdkVersion}"
|
||||||
|
|
||||||
androidTestImplementation 'androidx.test:core:1.4.1-alpha05'
|
androidTestImplementation 'androidx.test:core:1.5.0'
|
||||||
androidTestImplementation 'androidx.test.ext:junit:1.1.4-alpha05'
|
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
||||||
androidTestImplementation 'androidx.test:runner:1.5.0-alpha02'
|
androidTestImplementation 'androidx.test:runner:1.5.2'
|
||||||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0-alpha05'
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
|
||||||
}
|
}
|
||||||
|
|
|
@ -287,6 +287,7 @@ public class ComposeMediaViewController{
|
||||||
DraftMediaAttachment draft=new DraftMediaAttachment();
|
DraftMediaAttachment draft=new DraftMediaAttachment();
|
||||||
draft.uri=uri;
|
draft.uri=uri;
|
||||||
draft.description=description;
|
draft.description=description;
|
||||||
|
draft.mimeType="image/jpeg";
|
||||||
attachmentsView.addView(createMediaAttachmentView(draft));
|
attachmentsView.addView(createMediaAttachmentView(draft));
|
||||||
attachments.add(draft);
|
attachments.add(draft);
|
||||||
attachmentsScroller.setVisibility(View.VISIBLE);
|
attachmentsScroller.setVisibility(View.VISIBLE);
|
||||||
|
|
Loading…
Reference in New Issue