BiliShare
????????QQ???QQ????????????????????
QQ????397462257
??
- ??demo bilibili
- screenshot
????
??
- ?build.gradle?????. "biliShare"????(??)?"biliShare-util"???????(???)???????.
allprojects {
repositories {
jcenter()
maven {
url "https://dl.bintray.com/thelasterstar/maven/"
}
}
}
dependencies {
compile 'com.jungly.socialize:biliShare:0.1.0701' //??
compile 'com.jungly.socialize:biliShare-util:0.1.0701@aar' //???
}
- ??QQ????AndroidManifest?????????????scheme?????appId?
<activity
android:name="com.tencent.tauth.AuthActivity"
android:launchMode="singleTask"
android:noHistory="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="tencent??AppId" />
</intent-filter> </activity>
- ????????{ root package } /wxapi/???WXEntryActivity??????AndroidManifest????
public class WXEntryActivity extends BaseWXEntryActivity {
@Override
protected String getAppId() {
return .....;
}
}
<activity
android:name=".wxapi.WXEntryActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:exported="true"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Translucent.NoTitleBar"/>
??
- ????
BiliShareConfiguration configuration = new BiliShareConfiguration.Builder(context)
.sina(appKey, redirectUrl, scope) //????
.qq(appId) //??qq
.weixin(appId) //????
.imageDownloader(new ShareFrescoImageDownloader()) //?????
.build();
//global client?????????BiliShare.get(name)???????client????????
BiliShare shareClient = BiliShare.global();
shareClient.config(configuration);
//config???????
shareClient.share(context, socializeMedia, shareParam, shareListener);
- ????/sample/src/main/java/com/bilibili/socialize/sample/MainActivity.class
??
?? | ?? | ?? |
---|---|---|
0.1.0701 | 2017-05-05 | 1?????SDK?2.0.3? 2???QQ SDK?5788? 3?????SDK?1.1.6? 4???BiliShare?onActivityResult()? 5?????bug? |
0.1.06 | 2017-04-24 | ???BiliShare?????????? |
...... |
License
Copyright 2015-2017 Bilibili Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.