Skip to content
This repository was archived by the owner on Dec 27, 2024. It is now read-only.

Commit 9fda1eb

Browse files
authored
clean up drag2d (#809)
1 parent b0b142b commit 9fda1eb

File tree

13 files changed

+453
-183
lines changed

13 files changed

+453
-183
lines changed

demoProjects/Drag2D/app/build.gradle

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,4 @@ dependencies {
3232

3333
implementation 'androidx.appcompat:appcompat:1.6.1'
3434
implementation 'com.google.android.material:material:1.8.0'
35-
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
36-
testImplementation 'junit:junit:4.13.2'
37-
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
38-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
3935
}

demoProjects/Drag2D/app/src/androidTest/java/android/support/drag2d/ExampleInstrumentedTest.java

Lines changed: 0 additions & 41 deletions
This file was deleted.

demoProjects/Drag2D/app/src/main/AndroidManifest.xml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@
44

55
<application
66
android:allowBackup="true"
7-
android:dataExtractionRules="@xml/data_extraction_rules"
8-
android:fullBackupContent="@xml/backup_rules"
97
android:icon="@mipmap/ic_launcher"
10-
android:label="@string/app_name"
8+
android:label="Drag2D Motion"
119
android:supportsRtl="true"
1210
android:theme="@style/Theme.Drag2D"
1311
tools:targetApi="31">
@@ -20,6 +18,15 @@
2018
<category android:name="android.intent.category.LAUNCHER" />
2119
</intent-filter>
2220
</activity>
21+
<activity
22+
android:name=".DragCardActivity"
23+
android:exported="true">
24+
<intent-filter>
25+
<action android:name="android.intent.action.MAIN" />
26+
27+
<!-- <category android:name="android.intent.category.LAUNCHER" />-->
28+
</intent-filter>
29+
</activity>
2330
</application>
2431

2532
</manifest>

0 commit comments

Comments
 (0)