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
             exclude group: 'com.android.installreferrer'
56
             exclude group: 'com.android.installreferrer'
57
         }
57
         }
58
     } else {
58
     } else {
59
-        implementation project(':amplitudereactnative')
59
+        implementation project(':react-native-amplitude')
60
         implementation project(':react-native-device-info')
60
         implementation project(':react-native-device-info')
61
         implementation(project(":react-native-google-signin")) {
61
         implementation(project(":react-native-google-signin")) {
62
             exclude group: 'com.google.android.gms'
62
             exclude group: 'com.google.android.gms'

+ 2
- 2
android/settings.gradle View File

1
 rootProject.name = 'jitsi-meet'
1
 rootProject.name = 'jitsi-meet'
2
 
2
 
3
 include ':app', ':sdk'
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
 include ':react-native-async-storage'
6
 include ':react-native-async-storage'
7
 project(':react-native-async-storage').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-async-storage/async-storage/android')
7
 project(':react-native-async-storage').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-async-storage/async-storage/android')
8
 include ':react-native-background-timer'
8
 include ':react-native-background-timer'

Loading…
Cancel
Save