You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using an ANE version with 64bit (thanks Mateo!) support from that branch, be aware of two things:
package name changed in that version, so when importing to the air project, change previous import com.freshplanet.ane.KeyboardSize.MeasureKeyboard
to import com.freshplanet.ane.AirKeyboardSize.MeasureKeyboard
public static function getInstance() is now public static getter instance(), so in your project do not call previous MeasureKeyboard.getInstance().getKeyboardHeight(), but instead call now: MeasureKeyboard.instance.getKeyboardHeight()
The text was updated successfully, but these errors were encountered:
When using an ANE version with 64bit (thanks Mateo!) support from that branch, be aware of two things:
package name changed in that version, so when importing to the air project, change previous
import com.freshplanet.ane.KeyboardSize.MeasureKeyboard
to
import com.freshplanet.ane.AirKeyboardSize.MeasureKeyboard
public static function getInstance() is now public static getter instance(), so in your project do not call previous
MeasureKeyboard.getInstance().getKeyboardHeight()
, but instead call now:MeasureKeyboard.instance.getKeyboardHeight()
The text was updated successfully, but these errors were encountered: