Browse Source

fix(android): renames amplitudereactnative project to use react-native- pattern

master
tmoldovan8x8 4 years ago
parent
commit
452b1b7e2e
No account linked to committer's email address
2 changed files with 3 additions and 3 deletions
  1. 1
    1
      android/sdk/build.gradle
  2. 2
    2
      android/settings.gradle

+ 1
- 1
android/sdk/build.gradle View File

@@ -56,7 +56,7 @@ dependencies {
56 56
             exclude group: 'com.android.installreferrer'
57 57
         }
58 58
     } else {
59
-        implementation project(':amplitudereactnative')
59
+        implementation project(':react-native-amplitude')
60 60
         implementation project(':react-native-device-info')
61 61
         implementation(project(":react-native-google-signin")) {
62 62
             exclude group: 'com.google.android.gms'

+ 2
- 2
android/settings.gradle View File

@@ -1,8 +1,8 @@
1 1
 rootProject.name = 'jitsi-meet'
2 2
 
3 3
 include ':app', ':sdk'
4
-include ':amplitudereactnative'
5
-project(':amplitudereactnative').projectDir = new File(rootProject.projectDir, '../node_modules/@amplitude/react-native//android')
4
+include ':react-native-amplitude'
5
+project(':react-native-amplitude').projectDir = new File(rootProject.projectDir, '../node_modules/@amplitude/react-native//android')
6 6
 include ':react-native-async-storage'
7 7
 project(':react-native-async-storage').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-async-storage/async-storage/android')
8 8
 include ':react-native-background-timer'

Loading…
Cancel
Save