Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesa2 committed Apr 6, 2021
1 parent c9c3562 commit d00f4be
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
android:theme="@style/AppTheme"
tools:ignore="AllowBackup">
<activity
android:name=".MedaipipeMainActivity"
android:name=".MediaPipeMainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import android.os.Bundle
import javax.annotation.Nonnull
import info.hannes.github.AppUpdateHelper

class MedaipipeMainActivity : NavigationActivity() {
class MediaPipeMainActivity : NavigationActivity() {

override fun onCreate(@Nonnull savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ class MultiHandActivity : AppCompatActivity() {
)
processor.videoSurfaceOutput?.setFlipY(FLIP_FRAMES_VERTICALLY)
PermissionHelper.checkAndRequestCameraPermissions(this)

val packetCreator = processor.packetCreator
val inputSidePackets: MutableMap<String, Packet> = HashMap()
inputSidePackets[INPUT_NUM_HANDS_SIDE_PACKET_NAME] = packetCreator.createInt32(NUM_HANDS)
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/activity_mediapipe_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MedaipipeMainActivity">
tools:context=".MediaPipeMainActivity">

<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/layout/content_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".MedaipipeMainActivity"
tools:context=".MediaPipeMainActivity"
tools:showIn="@layout/activity_mediapipe_main">

<FrameLayout
android:id="@+id/contentInfo"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MedaipipeMainActivity" />
tools:context=".MediaPipeMainActivity" />

</androidx.constraintlayout.widget.ConstraintLayout>

0 comments on commit d00f4be

Please sign in to comment.