skip to Main Content

Ubuntu – Play Store doesn't accept my AppBundle with Flutter?

I want to upload my Flutter AppBunble to PlayStore but I got this message from PlayStore: And Here are AndroidManifest.xml codes: <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="co..."> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> <application android:usesCleartextTraffic="true" android:icon="@mipmap/ic_launcher" android:label="... هروی"> <activity android:name=".MainActivity"…

VIEW QUESTION

Android Studio – MotionLayout OnSwipe spring physics stop working after transitionToStart/End()

I have the following MotionLayout: The Transition XML is as follows (I omitted the keyframes because they don't matter for this example). <Transition motion:constraintSetStart="@id/collapsed" motion:constraintSetEnd="@id/expanded" motion:duration="500" motion:motionInterpolator="cubic(0.2,0,0,1)"> <OnSwipe motion:springDamping="63.973" motion:autoCompleteMode="spring" motion:onTouchUp="autoComplete" motion:dragDirection="dragUp" motion:touchAnchorId="@id/now_playing_touchable_area" motion:touchAnchorSide="top" motion:springStopThreshold="1.0E-4" motion:springMass="2.6" motion:springStiffness="389.76" /> <KeyFrameSet> ...…

VIEW QUESTION
Back To Top
Search