This commit is contained in:
2024-03-10 03:08:43 +07:00
parent 3a4def3d33
commit fff33ec1fa
4 changed files with 37 additions and 1 deletions

View File

@ -11,6 +11,16 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Default"
tools:targetApi="31" />
tools:targetApi="31">
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>

View File

@ -0,0 +1,6 @@
package ru.myitschool.work;
import androidx.appcompat.app.AppCompatActivity;
public class MainActivity extends AppCompatActivity {
}

View File

@ -0,0 +1,12 @@
package ru.myitschool.work;
import org.junit.Test;
public class RestoreUnitTest {
/*TODO: Вам необходимо изменить этот класс, дописав в нём код согласно заданию*/
@Test
public void exampleTest() {
// Пример пустого теста - можно удалить
}
}