diff --git a/android/app/src/androidTest/java/com/rusefi/app/ExampleInstrumentedTest.java b/android/app/src/androidTest/java/com/rusefi/app/ExampleInstrumentedTest.java new file mode 100644 index 0000000000..77920a593f --- /dev/null +++ b/android/app/src/androidTest/java/com/rusefi/app/ExampleInstrumentedTest.java @@ -0,0 +1,26 @@ +package com.rusefi.app; + +import android.content.Context; + +import androidx.test.platform.app.InstrumentationRegistry; +import androidx.test.ext.junit.runners.AndroidJUnit4; + +import org.junit.Test; +import org.junit.runner.RunWith; + +import static org.junit.Assert.*; + +/** + * Instrumented test, which will execute on an Android device. + * + * @see Testing documentation + */ +@RunWith(AndroidJUnit4.class) +public class ExampleInstrumentedTest { + @Test + public void useAppContext() { + // Context of the app under test. + Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); + assertEquals("com.rusefi.app", appContext.getPackageName()); + } +} \ No newline at end of file diff --git a/android/app/src/main/java/com/rusefi/app/rusEFI.java b/android/app/src/main/java/com/rusefi/app/rusEFI.java new file mode 100644 index 0000000000..e5d16a618f --- /dev/null +++ b/android/app/src/main/java/com/rusefi/app/rusEFI.java @@ -0,0 +1,44 @@ +/* + * Copyright 2017, The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.rusefi.app; + +import android.app.Activity; +import android.content.Intent; +import android.os.Bundle; +import android.widget.TextView; + +public class rusEFI extends Activity { + + /* UI elements */ + private TextView mStatusView, mResultView; + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_usb); + + mStatusView = (TextView) findViewById(R.id.text_status); + mResultView = (TextView) findViewById(R.id.text_result); + + mStatusView.setText("Hello"); + + } + + @Override + protected void onNewIntent(Intent intent) { + } +}