Skip to content

Commit 5ead84d

Browse files
authored
Merge pull request #60 from AppDevNext/AndroidStudioDolphin
Android Studio Dolphin
2 parents 23e3d2c + 9f1018f commit 5ead84d

9 files changed

Lines changed: 177 additions & 119 deletions

File tree

MPChartExample/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ plugins {
33
}
44

55
android {
6-
compileSdkVersion 32
6+
compileSdkVersion 33
77
defaultConfig {
88
applicationId "com.xxmassdeveloper.mpchartexample"
99
minSdkVersion 19
10-
targetSdkVersion 32
10+
targetSdkVersion 33
1111
versionCode 57
1212
versionName '3.1.0'
1313
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -19,6 +19,7 @@ android {
1919
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2020
}
2121
}
22+
namespace 'com.xxmassdeveloper.mpchartexample'
2223
}
2324

2425
dependencies {

MPChartExample/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.xxmassdeveloper.mpchartexample">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
65

MPChartLib/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ plugins {
44
}
55

66
android {
7-
compileSdkVersion 32
7+
compileSdkVersion 33
88
defaultConfig {
99
minSdkVersion 19
10-
targetSdkVersion 32
10+
targetSdkVersion 33
1111

1212
consumerProguardFiles 'proguard-project.txt'
1313
}
@@ -20,6 +20,7 @@ android {
2020
testOptions {
2121
unitTests.returnDefaultValues = true // this prevents "not mocked" error
2222
}
23+
namespace 'com.github.mikephil.charting'
2324
}
2425

2526
dependencies {

MPChartLib/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest package="com.github.mikephil.charting">
2+
<manifest>
33

44
<!-- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
55

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ buildscript {
44
mavenCentral()
55
}
66
dependencies {
7-
classpath 'com.android.tools.build:gradle:7.2.1'
7+
classpath 'com.android.tools.build:gradle:7.3.1'
88
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
99
}
1010
}

gradle/wrapper/gradle-wrapper.jar

1.19 KB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)