Skip to content

Commit d12742f

Browse files
michaelbelclaude
andcommitted
Remove old buildapp sources and update project files
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 0bc7db6 commit d12742f

42 files changed

Lines changed: 86 additions & 572 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
*.iml
1+
.claude
22
.gradle
3-
.idea/*
3+
.idea
44
!.idea/icon.svg
5-
/local.properties
6-
.DS_Store
7-
/build
8-
/captures
9-
.externalNativeBuild
5+
.kotlin
6+
build
7+
local.properties

app/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

app/build.gradle

Lines changed: 0 additions & 71 deletions
This file was deleted.

app/proguard-rules.pro

Lines changed: 0 additions & 21 deletions
This file was deleted.

app/src/androidTest/java/org/michaelbel/buildapp/ExampleInstrumentedTest.java

Lines changed: 0 additions & 26 deletions
This file was deleted.

app/src/main/AndroidManifest.xml

Lines changed: 9 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,22 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="org.michaelbel.buildapp">
3-
4-
<uses-permission android:name="android.permission.INTERNET"/>
2+
<manifest
3+
xmlns:android="http://schemas.android.com/apk/res/android">
54

65
<application
7-
android:allowBackup="true"
8-
android:icon="@mipmap/ic_launcher"
96
android:label="@string/app_name"
10-
android:roundIcon="@mipmap/ic_launcher_round"
11-
android:supportsRtl="true"
12-
android:theme="@style/AppTheme"
13-
android:name=".App"
14-
tools:ignore="AllowBackup,GoogleAppIndexingWarning">
7+
android:icon="@drawable/ic_launcher"
8+
android:roundIcon="@drawable/ic_launcher"
9+
android:theme="@style/Theme.App.Starting">
1510

16-
<activity android:name=".ui.MainActivity">
11+
<activity
12+
android:name=".MainActivity"
13+
android:exported="true">
1714
<intent-filter>
1815
<action android:name="android.intent.action.MAIN" />
1916
<category android:name="android.intent.category.LAUNCHER" />
2017
</intent-filter>
2118
</activity>
2219

23-
<activity android:name=".ui.LoginActivity">
24-
<intent-filter>
25-
<action android:name="android.intent.action.VIEW"/>
26-
<category android:name="android.intent.category.DEFAULT"/>
27-
<category android:name="android.intent.category.BROWSABLE"/>
28-
29-
<!--Authorization callback URL looks like this: buildapp://login-->
30-
<data android:host="login" android:scheme="buildapp"/>
31-
</intent-filter>
32-
</activity>
33-
3420
</application>
3521

36-
</manifest>
22+
</manifest>

app/src/main/java/org/michaelbel/buildapp/App.java

Lines changed: 0 additions & 11 deletions
This file was deleted.

app/src/main/java/org/michaelbel/buildapp/http/ApiConfig.java

Lines changed: 0 additions & 8 deletions
This file was deleted.

app/src/main/java/org/michaelbel/buildapp/http/AppRetrofit.java

Lines changed: 0 additions & 20 deletions
This file was deleted.

app/src/main/java/org/michaelbel/buildapp/json/User.java

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)