Skip to content

Commit daa4c76

Browse files
committed
Add touchOccurred support
Added support for touchOccurred events so that, e.g. the Humanoid effect works as intended.
1 parent 4362396 commit daa4c76

File tree

4 files changed

+29
-6
lines changed

4 files changed

+29
-6
lines changed

app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 33
54
defaultConfig {
65
applicationId "ai.deepar.deepar_example"
76
minSdkVersion 23
87
targetSdkVersion 33
8+
compileSdk 33
99
versionCode 1
1010
versionName "1.0"
1111
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -35,7 +35,7 @@ dependencies {
3535
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
3636
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
3737
def camerax_version = "1.2.3"
38-
implementation "androidx.camera:camera-core:${camerax_version}"
38+
implementation "androidx.camera:camera-core:$camerax_version"
3939
implementation "androidx.camera:camera-camera2:$camerax_version"
4040
implementation "androidx.camera:camera-lifecycle:$camerax_version"
4141
implementation "androidx.camera:camera-view:$camerax_version"

app/proguard-rules.pro

+5
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,10 @@
2121
#-renamesourcefileattribute SourceFile
2222

2323
-keepclassmembers class ai.deepar.ar.DeepAR { *; }
24+
-keepclassmembers class ai.deepar.ar.ARTouchInfo { *; }
25+
-keepclassmembers class ai.deepar.ar.ARTouchType { *; }
2426
-keepclassmembers class ai.deepar.ar.core.videotexture.VideoTextureAndroidJava { *; }
27+
28+
-keep class ai.deepar.ar.ARTouchInfo
29+
-keep class ai.deepar.ar.ARTouchType
2530
-keep class ai.deepar.ar.core.videotexture.VideoTextureAndroidJava

app/src/main/java/ai/deepar/deepar_example/MainActivity.java

+21-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import static android.os.Environment.getExternalStoragePublicDirectory;
44

55
import android.Manifest;
6+
import android.annotation.SuppressLint;
67
import android.content.Intent;
78
import android.content.pm.ActivityInfo;
89
import android.content.pm.PackageManager;
@@ -14,6 +15,7 @@
1415
import android.text.format.DateFormat;
1516
import android.util.DisplayMetrics;
1617
import android.util.Size;
18+
import android.view.MotionEvent;
1719
import android.view.Surface;
1820
import android.view.SurfaceHolder;
1921
import android.view.SurfaceView;
@@ -46,6 +48,8 @@
4648

4749
import ai.deepar.ar.ARErrorType;
4850
import ai.deepar.ar.AREventListener;
51+
import ai.deepar.ar.ARTouchInfo;
52+
import ai.deepar.ar.ARTouchType;
4953
import ai.deepar.ar.CameraResolutionPreset;
5054
import ai.deepar.ar.DeepAR;
5155
import ai.deepar.ar.DeepARImageFormat;
@@ -64,9 +68,7 @@ public class MainActivity extends AppCompatActivity implements SurfaceHolder.Cal
6468

6569
private DeepAR deepAR;
6670

67-
private int currentMask=0;
6871
private int currentEffect=0;
69-
private int currentFilter=0;
7072

7173
private int screenOrientation;
7274

@@ -141,12 +143,28 @@ private void initializeFilters() {
141143

142144
}
143145

146+
@SuppressLint("ClickableViewAccessibility")
144147
private void initalizeViews() {
145148
ImageButton previousMask = findViewById(R.id.previousMask);
146149
ImageButton nextMask = findViewById(R.id.nextMask);
147150

148151
SurfaceView arView = findViewById(R.id.surface);
149152

153+
arView.setOnTouchListener((view, motionEvent) -> {
154+
switch (motionEvent.getAction()) {
155+
case MotionEvent.ACTION_DOWN:
156+
deepAR.touchOccurred(new ARTouchInfo(motionEvent.getX(), motionEvent.getY(), ARTouchType.Start));
157+
return true;
158+
case MotionEvent.ACTION_MOVE:
159+
deepAR.touchOccurred(new ARTouchInfo(motionEvent.getX(), motionEvent.getY(), ARTouchType.Move));
160+
return true;
161+
case MotionEvent.ACTION_UP:
162+
deepAR.touchOccurred(new ARTouchInfo(motionEvent.getX(), motionEvent.getY(), ARTouchType.End));
163+
return true;
164+
}
165+
return false;
166+
});
167+
150168
arView.getHolder().addCallback(this);
151169

152170
// Surface might already be initialized, so we force the call to onSurfaceChanged
@@ -334,7 +352,7 @@ private int getScreenOrientation() {
334352
}
335353
private void initializeDeepAR() {
336354
deepAR = new DeepAR(this);
337-
deepAR.setLicenseKey("your_license_key_here");
355+
deepAR.setLicenseKey("47e6a945b48d0c92faf3821ddd6f89dbc83457a674c18b8bfbc7d640f0f52f084ed0747b6c5c6e38");
338356
deepAR.initialize(this, this);
339357
setupCamera();
340358
}

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77

88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:8.0.2'
10+
classpath 'com.android.tools.build:gradle:8.1.2'
1111

1212
// NOTE: Do not place your application dependencies here; they belong
1313
// in the individual module build.gradle files

0 commit comments

Comments
 (0)