Skip to content

Commit

Permalink
packagename issue fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
maxis7567 committed Jan 21, 2019
1 parent f4b8437 commit f8a3767
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.maxis7567.msvolley"
applicationId "com.maxis7567.example"
minSdkVersion 14
targetSdkVersion 28
versionCode 1
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:dist="http://schemas.android.com/apk/distribution"
package="com.maxis7567.msvolley">
package="com.maxis7567.example">


<application
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
package com.maxis7567.msvolley;
package com.maxis7567.example;

import android.content.Context;

import com.android.volley.Response;
import com.google.gson.reflect.TypeToken;
import com.maxis7567.msvolley.JsonRequest;
import com.maxis7567.msvolley.RequestQueueContainer;

import java.util.ArrayList;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.maxis7567.msvolley;
package com.maxis7567.example;

import com.google.gson.annotations.SerializedName;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
package com.maxis7567.msvolley;
package com.maxis7567.example;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;

import com.maxis7567.example.R;

public class MainActivity extends AppCompatActivity {

@Override
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
tools:context="com.maxis7567.example.MainActivity">

<TextView
android:layout_width="wrap_content"
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ org.gradle.jvmargs=-Xmx1536m
android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true
android.builder.sdkDownload=true

0 comments on commit f8a3767

Please sign in to comment.