mirror of
https://github.com/a-mayb3/KanbanCloneAndroid.git
synced 2026-03-21 10:05:39 +01:00
renamed package to follow kotlin naming conventions
This commit is contained in:
parent
540eeb2fa5
commit
22c7fe8722
10 changed files with 59 additions and 11 deletions
|
|
@ -3,7 +3,7 @@ plugins {
|
|||
}
|
||||
|
||||
android {
|
||||
namespace = "com.campusaula.edbole.KanbanCloneAndroid"
|
||||
namespace = "com.campusaula.edbole.kanban_clone_android"
|
||||
compileSdk {
|
||||
version = release(36)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
package com.campusaula.edbole.KanbanCloneAndroid
|
||||
package com.campusaula.edbole.kanban_clone_android
|
||||
|
||||
import androidx.test.platform.app.InstrumentationRegistry
|
||||
import androidx.test.ext.junit.runners.AndroidJUnit4
|
||||
|
|
@ -16,10 +16,10 @@
|
|||
android:theme="@style/Theme.KanbanCloneAndroid"
|
||||
android:usesCleartextTraffic="true" >
|
||||
<activity
|
||||
android:name=".LoginActivity"
|
||||
android:name="com.campusaula.edbole.kanban_clone_android.LoginActivity"
|
||||
android:exported="false" />
|
||||
<activity
|
||||
android:name=".MainActivity"
|
||||
android:name="com.campusaula.edbole.kanban_clone_android.MainActivity"
|
||||
android:exported="true" >
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
package com.campusaula.edbole.KanbanCloneAndroid
|
||||
package com.campusaula.edbole.kanban_clone_android
|
||||
|
||||
import android.os.Bundle
|
||||
import androidx.activity.enableEdgeToEdge
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.campusaula.edbole.KanbanCloneAndroid.kanban
|
||||
package com.campusaula.edbole.kanban_clone_android.kanban
|
||||
|
||||
import com.google.gson.annotations.SerializedName
|
||||
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.campusaula.edbole.KanbanCloneAndroid.kanban
|
||||
package com.campusaula.edbole.kanban_clone_android.kanban
|
||||
|
||||
import com.google.gson.annotations.SerializedName
|
||||
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.campusaula.edbole.KanbanCloneAndroid.kanban
|
||||
package com.campusaula.edbole.kanban_clone_android.kanban
|
||||
|
||||
import com.google.gson.annotations.SerializedName
|
||||
|
||||
|
|
@ -5,6 +5,54 @@
|
|||
android:id="@+id/main"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context=".LoginActivity">
|
||||
tools:context="com.campusaula.edbole.kanban_clone_android.LoginActivity">
|
||||
|
||||
<EditText
|
||||
android:layout_width="350dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:inputType="textEmailAddress"
|
||||
android:ems="10"
|
||||
android:id="@+id/emailInput"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintHorizontal_bias="0.491"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
android:hint="usuario@ejemplo.es"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
android:layout_marginTop="224dp" />
|
||||
|
||||
<EditText
|
||||
android:layout_width="350dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:inputType="textPassword"
|
||||
android:ems="10"
|
||||
android:id="@+id/passwordInput"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintHorizontal_bias="0.491"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
android:layout_marginTop="4dp"
|
||||
app:layout_constraintTop_toBottomOf="@+id/emailInput"
|
||||
android:hint="tu-contraseña" />
|
||||
|
||||
<Button
|
||||
android:text="Iniciar sesión"
|
||||
android:layout_width="228dp"
|
||||
android:layout_height="46dp"
|
||||
android:id="@+id/loginButton"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/passwordInput"
|
||||
android:layout_marginTop="16dp"
|
||||
app:layout_constraintHorizontal_bias="0.502" />
|
||||
|
||||
<Button
|
||||
android:text="... o registrate ahora"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:id="@+id/logonButton"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
android:layout_marginBottom="16dp"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintHorizontal_bias="0.5"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
style="@style/Widget.Material3.Button.TextButton" />
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
|
@ -5,7 +5,7 @@
|
|||
android:id="@+id/main"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context=".MainActivity">
|
||||
tools:context="com.campusaula.edbole.kanban_clone_android.MainActivity">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
package com.campusaula.edbole.KanbanCloneAndroid
|
||||
package com.campusaula.edbole.kanban_clone_android
|
||||
|
||||
import org.junit.Test
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue