This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<MotionScene xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:motion="http://schemas.android.com/apk/res-auto"> | |
<ConstraintSet android:id="@+id/video_state_embedded_playing"> | |
<Constraint | |
android:id="@+id/video_player" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:layout_margin="0dp" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<androidx.constraintlayout.motion.widget.MotionLayout | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:app="http://schemas.android.com/apk/res-auto" | |
android:id="@+id/activity_container" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:focusableInTouchMode="true" | |
app:layoutDescription="@xml/main_activity_motion_scene" | |
app:currentState="@id/video_state_embedded_stopped"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Based on alloy's built-in sqlite adapter from alloy v1.5.1 | |
//https://github.com/appcelerator/alloy/blob/1.5.1/Alloy/lib/alloy/sync/sql.js | |
var _ = require('alloy/underscore')._; | |
// The database name used when none is specified in the | |
// model configuration. | |
var ALLOY_DB_DEFAULT = '_alloy_'; | |
var ALLOY_ID_DEFAULT = 'alloy_id'; |
NewerOlder