From e20a0a54032f9945832d45dcc467167a4f4b5b26 Mon Sep 17 00:00:00 2001 From: Benjamin Loison Date: Thu, 2 May 2024 01:22:43 +0200 Subject: [PATCH] Rename `net/hanshq/hello` to `com/robust_image_source_identification_on_modern_smartphones/camera` --- datasets/android/AndroidManifest.xml | 4 ++-- datasets/android/compile.sh | 4 ++-- .../camera}/MainActivity.java | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) rename datasets/android/java/{net/hanshq/hello => com/robust_image_source_identification_on_modern_smartphones/camera}/MainActivity.java (74%) diff --git a/datasets/android/AndroidManifest.xml b/datasets/android/AndroidManifest.xml index f0bd0d7..cebbf0e 100644 --- a/datasets/android/AndroidManifest.xml +++ b/datasets/android/AndroidManifest.xml @@ -1,10 +1,10 @@ - + diff --git a/datasets/android/compile.sh b/datasets/android/compile.sh index 2316939..4400b53 100755 --- a/datasets/android/compile.sh +++ b/datasets/android/compile.sh @@ -2,8 +2,8 @@ SDK_FOLDER=/usr/lib/android-sdk PLATFORM=$SDK_FOLDER/platforms/android-33 BUILD_TOOLS=$SDK_FOLDER/build-tools/30.0.3 -SOURCE_FOLDER=net/hanshq/hello -APP_NAME=Hello +SOURCE_FOLDER=com/robust_image_source_identification_on_modern_smartphones/camera +APP_NAME=Camera mkdir -p build/gen build/apk diff --git a/datasets/android/java/net/hanshq/hello/MainActivity.java b/datasets/android/java/com/robust_image_source_identification_on_modern_smartphones/camera/MainActivity.java similarity index 74% rename from datasets/android/java/net/hanshq/hello/MainActivity.java rename to datasets/android/java/com/robust_image_source_identification_on_modern_smartphones/camera/MainActivity.java index 4de55d4..8a94e2d 100644 --- a/datasets/android/java/net/hanshq/hello/MainActivity.java +++ b/datasets/android/java/com/robust_image_source_identification_on_modern_smartphones/camera/MainActivity.java @@ -1,4 +1,4 @@ -package net.hanshq.hello; +package com.robust_image_source_identification_on_modern_smartphones.camera; import android.app.Activity; import android.os.Bundle; @@ -15,6 +15,6 @@ public class MainActivity extends Activity { TextView text = (TextView)findViewById(R.id.my_text); Context context = getApplicationContext(); BatteryManager batteryManager = (BatteryManager)context.getSystemService(Context.BATTERY_SERVICE); - text.setText("Hello, worldeee!" + batteryManager.getIntProperty(BatteryManager.BATTERY_PROPERTY_CHARGE_COUNTER)); + text.setText("Hello, worldg!" + batteryManager.getIntProperty(BatteryManager.BATTERY_PROPERTY_CHARGE_COUNTER)); } }