Skip to content

Commit b758ad2

Browse files
authored
Merge pull request #8 from droid-lover/sachin/easy_analytics_android12_support
Easy Analytics is now running on Android12 (API31)
2 parents 8ca3d5f + 70e1401 commit b758ad2

4 files changed

Lines changed: 5 additions & 6 deletions

File tree

.idea/gradle.xml

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ dependencies {
113113
implementation 'com.chibatching.kotpref:kotpref:2.13.1'
114114

115115
//Easy Analytics
116-
// implementation(project(":easyAnalytics"))
117-
implementation 'com.github.myJarvis:EasyAnalytics:0.0.4'
116+
implementation(project(":easyAnalytics"))
117+
// implementation 'com.github.myJarvis:EasyAnalytics:0.0.4'
118118

119119
}

easyAnalytics/build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@ plugins {
66
}
77

88
android {
9-
compileSdkVersion 30
10-
buildToolsVersion "30.0.3"
9+
compileSdkVersion 31
1110

1211
defaultConfig {
1312
minSdkVersion 23
14-
targetSdkVersion 30
13+
targetSdkVersion 31
1514

1615
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1716
consumerProguardFiles "consumer-rules.pro"

easyAnalytics/src/main/AndroidManifest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<activity
88
android:name=".reports.ui.EasyAnalyticsReportsActivity"
99
android:screenOrientation="portrait"
10+
android:exported="true"
1011
android:label="@string/title_activity_easy_analytical_reports">
1112
<intent-filter>
1213
<category android:name="android.intent.category.DEFAULT"/>

0 commit comments

Comments
 (0)