Code Monkey home page Code Monkey logo

universalcommunityaccount's Introduction

UniversalCommunityAccount

第三方账号登录通用包

务必在Manifest中声明这些

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
    <!-- 自定义页面 -->
    <activity
        android:name="com.tenpage.uca.LoginSinaWeiboActivity"
        android:label="@string/app_name" >
    </activity>
    <activity
        android:name="com.tenpage.uca.LoginRenrenActivity"
        android:label="@string/app_name" >
    </activity>
    <activity
        android:name="com.tenpage.uca.LoginQqActivity"
        android:label="@string/app_name" >
    </activity>
    <!-- 第三方页面 -->
    <activity
        android:name="com.renren.api.connect.android.AuthorizationHelper$BlockActivity"
        android:theme="@android:style/Theme.Dialog" >
    </activity>
    
    <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="tencent2222" /><!-- 数字为APP_KEY -->
        </intent-filter>
    </activity>

关于微信,需要在工程中建立packagename.wxapi.WXEntryActivity,WXEntryActivity可以参考com.tenpage.uca.wxapi.WXEntryActivity 另外需要在Manifest中注册该activity,并加上exported属性,设置为true,例如

universalcommunityaccount's People

Contributors

fatsoon avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.