Skip to content

Commit 910e7ab

Browse files
authored
Revert and fix mixpanel (#13)
* fix: revert upgrades and bug fix. * feat: fix MixpanelDestination overrides.
1 parent fa1263c commit 910e7ab

File tree

8 files changed

+208
-276
lines changed

8 files changed

+208
-276
lines changed

.github/workflows/build.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,6 @@ jobs:
2424

2525
steps:
2626
- uses: actions/checkout@v2
27-
- uses: actions/setup-java@v2
28-
with:
29-
distribution: 'temurin'
30-
java-version: '17'
31-
cache: 'gradle'
3227
- name: Grant execute permission for gradlew
3328
run: chmod +x gradlew
3429
- name: cache gradle dependencies
@@ -41,4 +36,4 @@ jobs:
4136
restore-keys: |
4237
${{ runner.os }}-gradle-
4338
- name: Run Tests
44-
run: ./gradlew check
39+
run: ./gradlew check

.github/workflows/release.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,6 @@ jobs:
1212
environment: deployment
1313
steps:
1414
- uses: actions/checkout@v2
15-
- uses: actions/setup-java@v2
16-
with:
17-
distribution: 'temurin'
18-
java-version: '17'
19-
cache: 'gradle'
2015
- name: Get tag
2116
id: vars
2217
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
@@ -57,4 +52,4 @@ jobs:
5752
-d '{"tag_name": "${{ env.RELEASE_VERSION }}", "name": "${{ env.RELEASE_VERSION }}", "body": "Release of version ${{ env.RELEASE_VERSION }}", "draft": false, "prerelease": false, "generate_release_notes": true}'
5853
env:
5954
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
60-
RELEASE_VERSION: ${{ steps.vars.outputs.tag }}
55+
RELEASE_VERSION: ${{ steps.vars.outputs.tag }}

.github/workflows/snapshot.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@ jobs:
1010
environment: deployment
1111
steps:
1212
- uses: actions/checkout@v2
13-
- uses: actions/setup-java@v2
14-
with:
15-
distribution: 'temurin'
16-
java-version: '17'
17-
cache: 'gradle'
1813
- name: Grant execute permission for gradlew
1914
run: chmod +x gradlew
2015
- name: cache gradle dependencies
@@ -33,4 +28,4 @@ jobs:
3328
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }}
3429
ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.NEXUS_USERNAME }}
3530
ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.NEXUS_PASSWORD }}
36-
SIGNING_PRIVATE_KEY_BASE64: ${{ secrets.SIGNING_PRIVATE_KEY_BASE64 }}
31+
SIGNING_PRIVATE_KEY_BASE64: ${{ secrets.SIGNING_PRIVATE_KEY_BASE64 }}

build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version = getVersionName()
66

77
plugins {
88
// Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin.
9-
id("org.jetbrains.kotlin.jvm") version "1.8.22"
9+
id("org.jetbrains.kotlin.jvm") version "1.6.0"
1010

1111
// Apply the java-library plugin for API and implementation separation.
1212
`java-library`
@@ -24,7 +24,7 @@ buildscript {
2424
dependencies {
2525
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.0")
2626
classpath("org.jetbrains.kotlin:kotlin-serialization:1.6.0")
27-
classpath("com.android.tools.build:gradle:8.3.2")
27+
classpath("com.android.tools.build:gradle:7.0.4")
2828
}
2929
}
3030

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Thu Sep 12 11:11:47 EDT 2024
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip
54
zipStoreBase=GRADLE_USER_HOME
65
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)