Skip to content

Commit

Permalink
Countly iOS SDK pods removed. It's now added with source code added. …
Browse files Browse the repository at this point in the history
…Incrementing version numbers. (#42)

* Countly iOS SDK pods removed and source code added.

* New release versions updated.
  • Loading branch information
ijunaid committed Dec 25, 2020
1 parent ded31cd commit 6573e6c
Show file tree
Hide file tree
Showing 44 changed files with 8,656 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 20.11.2
* !! Due to cocoapods issue with Xcode 12, we have added the iOS SDK as source code instead of Pod. Due to that change if you have already add the reference of files "CountlyNotificationService.h/m" then you need to update these files references by adding the files from "Pods/Development Pods/CountlyReactNative" and remove the old reference files.

## 20.11.1
* Added "getFeedbackWidgets" method to get a list of available feedback widgets as array of object to handle multiple widgets of same type.
* Added "presentFeedbackWidgetObject" to show/present a feedback widget with the combined widget object.
Expand Down
3 changes: 1 addition & 2 deletions CountlyReactNative.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'CountlyReactNative'
s.version = '20.11.1'
s.version = '20.11.2'
s.license = {
:type => 'COMMUNITY',
:text => <<-LICENSE
Expand Down Expand Up @@ -47,5 +47,4 @@ Pod::Spec.new do |s|
end

s.dependency "React"
s.dependency "CountlyPod", '20.11.1'
end
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public String toString(){
public class CountlyReactNative extends ReactContextBaseJavaModule implements LifecycleEventListener {

public static final String TAG = "CountlyRNPlugin";
private String COUNTLY_RN_SDK_VERSION_STRING = "20.11.1";
private String COUNTLY_RN_SDK_VERSION_STRING = "20.11.2";
private String COUNTLY_RN_SDK_NAME = "js-rnb-android";

private static CountlyConfig config = new CountlyConfig();
Expand Down
3 changes: 1 addition & 2 deletions example/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ rm App.js
curl https://raw.githubusercontent.com/Countly/countly-sdk-react-native-bridge/master/example/App.js --output App.js
curl https://raw.githubusercontent.com/Countly/countly-sdk-react-native-bridge/master/example/Example.js --output Example.js

yarn add countly-sdk-react-native-bridge@20.11.1
npm install --save https://github.com/ijunaid/react-native-advertising-id.git
yarn add countly-sdk-react-native-bridge@20.11.2

cd ./ios
pod install
Expand Down
1 change: 0 additions & 1 deletion ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ platform :ios, '8.0'

target 'countly-sdk-react-native-bridge' do
use_frameworks!
pod 'CountlyPod', "20.11.1"
end
694 changes: 694 additions & 0 deletions ios/src/Countly.h

Large diffs are not rendered by default.

Loading

0 comments on commit 6573e6c

Please sign in to comment.