Skip to content
This repository was archived by the owner on Jun 2, 2023. It is now read-only.

Commit a69f2b3

Browse files
committed
fix(): rename android package from cap.twitter.plugin to io.stewan.capacitor
1 parent e3521cd commit a69f2b3

File tree

152 files changed

+16010
-452
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

152 files changed

+16010
-452
lines changed

CHANGELOG.md

-82
This file was deleted.

CapacitorTwitter.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Pod::Spec.new do |s|
33
s.name = 'CapacitorTwitter'
44
s.version = '0.0.1'
5-
s.summary = 'access native twitter features like sign in and share'
5+
s.summary = 'Enable TwitterKit features for Capacitor'
66
s.license = 'MIT'
77
s.homepage = 'https://github.com/stewwan/capacitor-twitter'
88
s.author = 'Stewan Silva'

android/.idea/android.iml

-9
This file was deleted.

android/.idea/codeStyles/Project.xml

-29
This file was deleted.

android/.idea/modules.xml

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/.idea/vcs.xml

-6
This file was deleted.

android/.idea/workspace.xml

-210
This file was deleted.

android/capacitor-twitter/.gitignore

-1
This file was deleted.

android/capacitor-twitter/build.gradle

+1-2
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ repositories {
4242

4343
dependencies {
4444
implementation fileTree(dir: 'libs', include: ['*.jar'])
45-
implementation 'com.android.support:appcompat-v7:27.1.1'
46-
implementation project(':capacitor-android')
45+
implementation 'ionic-team:capacitor-android:1+'
4746
testImplementation 'junit:junit:4.12'
4847
androidTestImplementation 'com.android.support.test:runner:1.0.1'
4948
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="cap.twitter.plugin">
1+
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="io.stewan.capacitor.twitter.capacitortwitter">
34
<uses-permission android:name = "android.permission.INTERNET"/>
4-
</manifest>
5+
</manifest>

android/capacitor-twitter/src/main/java/cap/twitter/plugin/TwitterPlugin.java android/capacitor-twitter/src/main/java/io/stewan/capacitor/twitter/TwitterPlugin.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package cap.twitter.plugin;
1+
package io.stewan.capacitor.twitter;
22

33
import android.content.Intent;
44
import android.util.Log;

0 commit comments

Comments
 (0)