守望者--AIR技术交流

 找回密码
 立即注册

QQ登录

只需一步,快速开始

扫一扫,访问微社区

搜索
热搜: ANE FlasCC 炼金术
查看: 2241|回复: 2

ANE-Facebook

[复制链接]
  • TA的每日心情
    擦汗
    2018-4-10 15:18
  • 签到天数: 447 天

    [LV.9]以坛为家II

    1742

    主题

    2094

    帖子

    13万

    积分

    超级版主

    Rank: 18Rank: 18Rank: 18Rank: 18Rank: 18

    威望
    562
    贡献
    29
    金币
    52623
    钢镚
    1422

    开源英雄守望者

    发表于 2015-1-21 21:51:14 | 显示全部楼层 |阅读模式
    应用下载
    应用名称: ANE-Facebook
    支持64位:
    当前版本: 未知
    运行平台: Android IOS 
    开发语言: ActionScript 3 JAVA 其他 
    应用类别: ANE-多平台
    应用简介: Air Native Extension (iOS and Android) for the Facebook mobile SDK
    Air Native Extension for Facebook (iOS + Android)

    This is an Air native extension for Facebook SDK on iOS and Android. It has been developed byFreshPlanet and is used in the game SongPop.

    Facebook SDK Versions
    • iOS: 3.16.2 (compatible with iOS 5.0 and above)
    • Android: 3.6 (compatible with Android 2.2 and above)
    Installation

    The ANE binary (AirFacebook.ane) is located in the bin folder. You should add it to your application project's Build Path and make sure to package it with your app (more information here).

    On iOS:

    • as explained here, you will need to add some Info.plist additions in your application descriptor:
      1. <iPhone>

      2.     <InfoAdditions><![CDATA[

      3.         <key>CFBundleURLTypes</key>
      4.         <array>
      5.             <dict>
      6.                 <key>CFBundleURLSchemes</key>
      7.                     <array>
      8.                         <string>fb{YOUR_FB_ID}</string>
      9.                     </array>
      10.             </dict>
      11.         </array>
      12.         <key>FacebookAppID</key>
      13.         <string>{YOUR_FB_ID}</string>

      14.     ]]></InfoAdditions>

      15. </iPhone>
      复制代码
      On Android:

      • you will need to add the following activities and permission in your application descriptor:
        1. <android>
        2.     <manifestAdditions><![CDATA[
        3.         <manifest android:installLocation="auto">

        4.             ...

        5.             <uses-permission android:name="android.permission.INTERNET"/>

        6.             ...

        7.             <application>

        8.                 ...

        9.                 <activity android:name="com.facebook.LoginActivity"/>
        10.                 <activity android:name="com.freshplanet.ane.AirFacebook.LoginActivity" android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"></activity>
        11.                 <activity android:name="com.freshplanet.ane.AirFacebook.DialogActivity" android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"></activity>

        12.             </application>

        13.         </manifest>
        14.     ]]></manifestAdditions>
        15. </android>
        复制代码
        Documentation
        Actionscript documentation is available in HTML format in the docs folder.
        Samples
        A sample project is available in the sample folder. Read HOW-TO.txt walkthrought to set-up and run the sample application.
        Build from source
        Should you need to edit the extension source code and/or recompile it, you will find an ant build script (build.xml) in the build folder:
        1. cd /path/to/the/ane

        2. # Setup build configuration
        3. cd build
        4. mv example.build.config build.config
        5. # Edit build.config file to provide your machine-specific paths

        6. # Build the ANE
        7. ant
        复制代码
        Facebook android sdk use
        This sdk is using staticaly linked elements. We had to modify all the calls to the com.facebook.android.R package by a custom function that is doing the linking at runtime: import com.freshplanet.ane.AirFacebook.AirFacebookExtension and use AirFacebookExtension.getResourceId("nameOfTheRessource") or AirFacebookExtension.getResourceIds("nameOfTheRessource")
        Also an error when linking the ressources into the app, I had to rename the res/values/styles.xml to res/values/style.xml
        Authors
        This ANE has been written by Thibaut Crenn, Alexis Taugeron and Renaud Bardet. It belongs toFreshPlanet Inc. and is distributed under the Apache Licence, version 2.0.
        Join the FreshPlanet team - GAME DEVELOPMENT in NYC
        We are expanding our mobile engineering teams.
        FreshPlanet is a NYC based mobile game development firm and we are looking for senior engineers to lead the development initiatives for one or more of our games/apps. We work in small teams (6-9) who have total product control. These teams consist of mobile engineers, UI/UX designers and product experts.
        Please contact Tom Cassidy (tcassidy@freshplanet.com) or apply at http://freshplanet.com/jobs/





    相关链接:


    https://github.com/freshplanet/ANE-Facebook




    本帖子中包含更多资源

    您需要 登录 才可以下载或查看,没有帐号?立即注册

    x

    评分

    参与人数 1金币 +20 收起 理由
    shawn00 + 20 很给力!

    查看全部评分

    守望者AIR技术交流社区(www.airmyth.com)
    回复

    使用道具 举报

  • TA的每日心情
    擦汗
    2018-4-10 15:18
  • 签到天数: 447 天

    [LV.9]以坛为家II

    1742

    主题

    2094

    帖子

    13万

    积分

    超级版主

    Rank: 18Rank: 18Rank: 18Rank: 18Rank: 18

    威望
    562
    贡献
    29
    金币
    52623
    钢镚
    1422

    开源英雄守望者

     楼主| 发表于 2015-4-8 09:57:33 | 显示全部楼层
    使用  facebook ANE的小例子:

    https://github.com/aaulia/minimal-air-ane-facebook
    守望者AIR技术交流社区(www.airmyth.com)
    回复 支持 1 反对 0

    使用道具 举报

  • TA的每日心情
    擦汗
    2018-4-10 15:18
  • 签到天数: 447 天

    [LV.9]以坛为家II

    1742

    主题

    2094

    帖子

    13万

    积分

    超级版主

    Rank: 18Rank: 18Rank: 18Rank: 18Rank: 18

    威望
    562
    贡献
    29
    金币
    52623
    钢镚
    1422

    开源英雄守望者

     楼主| 发表于 2015-1-23 16:11:04 | 显示全部楼层
    守望者AIR技术交流社区(www.airmyth.com)
    回复 支持 反对

    使用道具 举报

    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    
    关闭

    站长推荐上一条 /4 下一条

    QQ|手机版|Archiver|网站地图|小黑屋|守望者 ( 京ICP备14061876号

    GMT+8, 2024-3-29 18:10 , Processed in 0.070408 second(s), 38 queries .

    守望者AIR

    守望者AIR技术交流社区

    本站成立于 2014年12月31日

    快速回复 返回顶部 返回列表