Skip to content
This repository was archived by the owner on Apr 3, 2025. It is now read-only.

Commit 0a83123

Browse files
committed
Initial commit
Initial commit
1 parent 865e089 commit 0a83123

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

app/src/main/AndroidManifest.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="ir.farsroidx">
3+
xmlns:tools="http://schemas.android.com/tools"
4+
package="ir.farsroidx.application">
45

56
<application
67
android:allowBackup="true"
78
android:icon="@mipmap/ic_launcher"
89
android:label="@string/app_name"
910
android:roundIcon="@mipmap/ic_launcher_round"
1011
android:supportsRtl="true"
11-
android:theme="@style/AppTheme">
12+
android:theme="@style/AppTheme"
13+
tools:ignore="GoogleAppIndexingWarning">
1214
<activity android:name=".MainActivity">
1315
<intent-filter>
1416
<action android:name="android.intent.action.MAIN" />

app/src/main/java/ir/farsroidx/MainActivity.java renamed to app/src/main/java/ir/farsroidx/application/MainActivity.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
package ir.farsroidx;
1+
package ir.farsroidx.application;
22

33
import android.support.v7.app.AppCompatActivity;
44
import android.os.Bundle;
55

6+
import ir.farsroidx.SPUtils;
7+
68
public class MainActivity extends AppCompatActivity {
79

810
@Override

0 commit comments

Comments
 (0)