firebase導入とSetUpActivityを作成しました

This commit is contained in:
Ekamo-11 2024-06-06 13:58:11 +09:00
parent ac3db6c0e4
commit b423b919ac
3 changed files with 32 additions and 8 deletions

View File

@ -12,7 +12,9 @@
android:supportsRtl="true"
android:theme="@style/Theme.Oplogy"
tools:targetApi="31">
<activity
android:name=".SetUpActivity"
android:exported="false" />
<!--
TODO: Before you run your application, you need a Google Maps API key.
@ -32,13 +34,12 @@
android:name=".MapsActivity"
android:exported="true"
android:label="@string/title_activity_maps">
<!-- <intent-filter> -->
<!-- <action android:name="android.intent.action.MAIN" /> -->
<!-- <category android:name="android.intent.category.LAUNCHER" /> -->
<!-- </intent-filter> -->
</activity>
<activity
android:name=".MainActivity"
android:exported="true">

View File

@ -0,0 +1,14 @@
package com.example.oplogy;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
public class SetUpActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_set_up);
}
}

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".SetUpActivity">
</androidx.constraintlayout.widget.ConstraintLayout>