4

This is an Android applicatoin. I add a .so native libray, in the folder: Libs/armeabi/libxx.so

However, I cannot commit it to the repository.

When I right-click "commit", there is no change to reflect that I have added a .so native library file.

How can I solve the problem?

Charles
  • 50,943
  • 13
  • 104
  • 142
user1914692
  • 3,033
  • 5
  • 36
  • 61

2 Answers2

9

OK, I find one solution. Right click the file, choose Team -> Add to Version Control

Then the file will be able to be commited.

user1914692
  • 3,033
  • 5
  • 36
  • 61
  • I did this, but got error that svn: File not found: transaction '1630-1bi', path '/SVNProject/trunk/OS_Android/ProjectName/libs/armeabi/libmlcrsa12.so' – tejas Sep 26 '13 at 11:04
  • I am trying to commit this same library, it is the ultraliteJ file right. Can you please tell me how did you do that. – tejas Sep 26 '13 at 12:35
1

Subversion ignores .so files by default. You could try changing settings at Preferences > Team > Ignored Resources (Ignoring Eclipse project files in SVN project). If not, just add the .so file via the command line.

Community
  • 1
  • 1
androiddev19
  • 306
  • 2
  • 10