Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add ketch consent filter support #371

Draft
wants to merge 3 commits into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 15 additions & 14 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,21 @@ To maintain consistency and provide clear information about the nature of commit

List of React-Native packages and their corresponding commit message format:

| React Native packages | Fix commit message format | Feature commit message format |
| ----------------------------------------- | -------------------------------------------------------------- | --------------------------------------------------------------------- |
| rudder-sdk-react-native | fix(rudder-sdk-react-native): fix some issue | feat(rudder-sdk-react-native): add some new feature |
| rudder-integration-amplitude-react-native | fix(rudder-integration-amplitude-react-native): fix some issue | feat(rudder-integration-amplitude-react-native): add some new feature |
| rudder-integration-appcenter-react-native | fix(rudder-integration-appcenter-react-native): fix some issue | feat(rudder-integration-appcenter-react-native): add some new feature |
| rudder-integration-appsflyer-react-native | fix(rudder-integration-appsflyer-react-native): fix some issue | feat(rudder-integration-appsflyer-react-native): add some new feature |
| rudder-integration-braze-react-native | fix(rudder-integration-braze-react-native): fix some issue | feat(rudder-integration-braze-react-native): add some new feature |
| rudder-integration-clevertap-react-native | fix(rudder-integration-clevertap-react-native): fix some issue | feat(rudder-integration-clevertap-react-native): add some new feature |
| rudder-integration-firebase-react-native | fix(rudder-integration-firebase-react-native): fix some issue | feat(rudder-integration-firebase-react-native): add some new feature |
| rudder-integration-moengage-react-native | fix(rudder-integration-moengage-react-native): fix some issue | feat(rudder-integration-moengage-react-native): add some new feature |
| rudder-integration-singular-react-native | fix(rudder-integration-singular-react-native): fix some issue | feat(rudder-integration-singular-react-native): add some new feature |
| example | fix(example): fix some issue | feat(example): add some new feature |
| rudder-sdk-react-native-monorepo | fix(rudder-sdk-react-native-monorepo): fix some issue | feat(rudder-sdk-react-native-monorepo): add some new feature |
| rudder-plugin-db-encryption-react-native | fix(rudder-plugin-db-encryption-react-native): fix some issue | feat(rudder-plugin-db-encryption-react-native): add some new feature |
| React Native packages | Fix commit message format | Feature commit message format |
| ----------------------------------------------- | -------------------------------------------------------------------- | --------------------------------------------------------------------------- |
| rudder-sdk-react-native | fix(rudder-sdk-react-native): fix some issue | feat(rudder-sdk-react-native): add some new feature |
| rudder-integration-amplitude-react-native | fix(rudder-integration-amplitude-react-native): fix some issue | feat(rudder-integration-amplitude-react-native): add some new feature |
| rudder-integration-appcenter-react-native | fix(rudder-integration-appcenter-react-native): fix some issue | feat(rudder-integration-appcenter-react-native): add some new feature |
| rudder-integration-appsflyer-react-native | fix(rudder-integration-appsflyer-react-native): fix some issue | feat(rudder-integration-appsflyer-react-native): add some new feature |
| rudder-integration-braze-react-native | fix(rudder-integration-braze-react-native): fix some issue | feat(rudder-integration-braze-react-native): add some new feature |
| rudder-integration-clevertap-react-native | fix(rudder-integration-clevertap-react-native): fix some issue | feat(rudder-integration-clevertap-react-native): add some new feature |
| rudder-integration-firebase-react-native | fix(rudder-integration-firebase-react-native): fix some issue | feat(rudder-integration-firebase-react-native): add some new feature |
| rudder-integration-moengage-react-native | fix(rudder-integration-moengage-react-native): fix some issue | feat(rudder-integration-moengage-react-native): add some new feature |
| rudder-integration-singular-react-native | fix(rudder-integration-singular-react-native): fix some issue | feat(rudder-integration-singular-react-native): add some new feature |
| example | fix(example): fix some issue | feat(example): add some new feature |
| rudder-sdk-react-native-monorepo | fix(rudder-sdk-react-native-monorepo): fix some issue | feat(rudder-sdk-react-native-monorepo): add some new feature |
| rudder-plugin-db-encryption-react-native | fix(rudder-plugin-db-encryption-react-native): fix some issue | feat(rudder-plugin-db-encryption-react-native): add some new feature |
| rudder-plugin-ketch-consent-filter-react-native | fix(rudder-plugin-ketch-consent-filter-react-native): fix some issue | feat(rudder-plugin-ketch-consent-filter-react-native): add some new feature |

You may also use `chore` and other commit types as described in the [**Conventional Commit**](https://www.conventionalcommits.org/en/v1.0.0/) documentation. But only `fix` and `feat` commits will be considered for changelog generation.

Expand Down
5 changes: 3 additions & 2 deletions apps/example/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ buildscript {
dependencies {
classpath("com.android.tools.build:gradle")
classpath("com.facebook.react:react-native-gradle-plugin")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
classpath('org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.20')
}
}

Expand All @@ -28,6 +28,7 @@ allprojects {
url("$rootDir/../node_modules/detox/Detox-android")
}
maven { url 'https://maven.singular.net/' }

mavenCentral()

}
}
Loading
Loading