-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* v3.4.0版本 1. 移除 inject-annotation 模块; 2. 移除 growingio-autotracker-gradle-plugin 模块; 以上两个模块代码请到 https://github.com/growingio/growingio-sdk-android-plugin 查看; 3. 添加 FirebaseAnalyticsAdapter; 4. 添加 GoogleAnalyticsAdapter; 5. fix: 不触发INSTANT事件时,cache事件不被发送 6. feat: 还原eventName取值逻辑 7. fix: add order by Co-authored-by: styluo <shu_jiahuili@foxmail.com>
- Loading branch information
Showing
149 changed files
with
2,525 additions
and
4,680 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
plugins { | ||
id 'com.android.library' | ||
} | ||
|
||
android { | ||
compileSdkVersion buildConfiguration.compileVersion | ||
defaultConfig { | ||
minSdkVersion 19 | ||
targetSdkVersion buildConfiguration.targetSdkVersion | ||
versionName releaseConfiguration.releaseVersion | ||
versionCode releaseConfiguration.releaseVersionCode | ||
} | ||
|
||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
|
||
compileOptions { | ||
sourceCompatibility buildConfiguration.sourceCompatibility | ||
targetCompatibility buildConfiguration.targetCompatibility | ||
} | ||
|
||
testOptions { | ||
unitTests.all { | ||
jacoco { | ||
includeNoLocationClasses = true | ||
excludes = ['jdk.internal.*'] | ||
} | ||
} | ||
unitTests { | ||
returnDefaultValues = true | ||
includeAndroidResources = true | ||
} | ||
} | ||
} | ||
|
||
|
||
dependencies { | ||
testImplementation libraries.test.junit | ||
testImplementation libraries.test.truth | ||
testImplementation libraries.test.androidx_core | ||
testImplementation libraries.test.robolectric | ||
|
||
testImplementation platform('com.google.firebase:firebase-bom:30.0.1') | ||
testImplementation 'com.google.firebase:firebase-analytics-ktx' | ||
|
||
implementation project(':growingio-tracker-core') | ||
|
||
implementation project(":growingio-annotation") | ||
annotationProcessor project(":growingio-annotation:compiler") | ||
|
||
compileOnly platform('com.google.firebase:firebase-bom:30.0.1') | ||
compileOnly 'com.google.firebase:firebase-analytics-ktx' | ||
} | ||
apply from: "${rootProject.projectDir}/gradle/publishMaven.gradle" | ||
apply from: "${rootProject.projectDir}/gradle/jacocoModule.gradle" |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
POM_NAME=analytics-fa | ||
POM_ARTIFACT_ID=analytics-fa | ||
POM_PACKAGING=aar | ||
POM_DESCRIPTION=Adapter Google Analytics data to Growingio's sdk. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
growingio-adapter/analytics-fa/src/main/AndroidManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
~ Copyright (C) 2020 Beijing Yishu Technology Co., Ltd. | ||
~ | ||
~ Licensed under the Apache License, Version 2.0 (the "License"); | ||
~ you may not use this file except in compliance with the License. | ||
~ You may obtain a copy of the License at | ||
~ | ||
~ http://www.apache.org/licenses/LICENSE-2.0 | ||
~ | ||
~ Unless required by applicable law or agreed to in writing, software | ||
~ distributed under the License is distributed on an "AS IS" BASIS, | ||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
~ See the License for the specific language governing permissions and | ||
~ limitations under the License. | ||
--> | ||
|
||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.growingio.android.analytics.firebase"> | ||
|
||
</manifest> |
Oops, something went wrong.